5.1 Summing numbers
total = 0
for number in range(1, 11):
total += number
print("The sum is:", total)
5.2 Greeting a list of friends
names = ["Zia", "Wiesje", "Muchu"]
for name in names:
print("Hello,", name + "!")
5.3 Infinite squirrel chasing?
while True:
print("Wiesje chases the squirrel!")
wiesje_energy = 10
while wiesje_energy > 0:
print("Wiesje chases the squirrel!")
wiesje_energy -= 1
print("Wiesje is too tired and gives up.")
wiesje_energy = 5
squirrel_energy = 100
while wiesje_energy > 0 and squirrel_energy > 0:
print("Wiesje chases the squirrel...")
wiesje_energy -= 1
squirrel_energy -= 1
if squirrel_energy...