04 Apr Saturday 16:30 Python Practice – 23.04.01.
Question 1
We are going to continue to work on the ‘hero.db’ database. Since we have already created a table called “heroes” in the database, we are going to add 2 more records in the table “heroes”:
Field | name | hero_level | int_growth | agi_growth | str_growth | hero_int | hero_agi | hero_str |
New record 1 | Hercules | 1 | 3.6 | 6 | 9.9 | 270 | 150 | 140 |
New record 2 | Blade | 1 | 10 | 18.5 | 14.5 | 40 | 28 | 39 |
Question 2:
From all the records in the “heroes” table, you need to get the record where the “name” field matches “Hercules” and print the record out.
Sorry, the comment form is closed at this time.