Python Task 1
Python Task 1
⏰ 3. Timer Countdown
Scenario:
You're building a countdown timer for a rocket launch. Start from 10 and count
down to 0 using a while loop.
🗣 Add: Print "Blast off!" when it reaches 0.
🍪 4. Cookie Jar
Scenario:
You have 5 cookies. Each time you eat one, the program tells you how many are
left. The loop runs until the cookies are all eaten.
😋 Add: Warn the user if they try to eat more than available.
⏰ 3. Timer Countdown
countdown = 10
while countdown >= 0:
print(countdown)
countdown -= 1
print("Blast off!")
🍪 4. Cookie Jar
cookies = 5
while cookies > 0:
print(f"Eating a cookie... {cookies} left")
cookies -= 1
print("No more cookies left!")
print("Battery empty!")