Week 1: Kaity’s Cookie Calculator 🍪
Kaity baked cookies for her robot friends. She wants to divide them equally. Can you write code to help her?
cookies = 12
friends = 4
# Your code here
Week 2: Space Fuel Formula 🚀
Kaity's rocket needs fuel. The fuel is calculated as speed * 2 + 5. Can you write the formula?
speed = 8
# Your code here
Week 3: Buggy Light Switch 💡
Kaity is fixing a broken switch. When the switch is 'on', the light should say "Light is ON!"
switch = 'on'
if switch == 'on':
# Your code here
Week 4: Count with Kaity 🔢
Help Kaity count down from 5 to 1 using a loop!
# Your code here using a loop
for i in range(5, 0, -1):
print(i)