SheCodesAustralia / workshopcontent

Other
6 stars 12 forks source link

Python section 8 code issues #18

Closed alasiax closed 2 years ago

alasiax commented 3 years ago
spelling - wnbgcolor -> wn.bgcolor
Step 7 - indentations in code clarifying that's the adjustment

Step 4
# create food
max_foods = 10

for food in foods:
    foods.shapesize(.5)
should be
# create food
max_foods = 10

for count in range(maxFoods):
    new_food.shapesize(.5)