Skills Review
What we (should) already know
Data Types
string integer float boolean list dictionary
Type Casting
string to integer
string to boolean
Lists and Dictionaries
names = [
"Aroha"
"Billy",
"Clare"
]
scores = {
"Alistair": 30,
"Beyonce": 70,
"Clive": 50
}
Loops
Do the same thing over…
and over… and over…
Conditionals
if, elif, else
Challenge:
Debug the Burger Builder
Open up burgerbuilder.py
and make it work better:
- All unchanging values should be stored in constants.
- The app should apologise if it doesn’t have a requested filling.
- The app should be able to collect as many orders as needed.
Skills Review: Complete!
Great, now it’s time for the new stuff…
Take me to the next chapter!