2025/2026 Graded A+
What is wrong with this Python loop:
n=5
while n > 0 :
print(n)
print('All done') - This loop will run forever
What does the break statement do? - Exits the currently executing loop
What does the continue statement do? - Jumps to the "top" of the loop and starts the next iteration
What does the following Python program print out?
tot = 0
for i in [5, 4, 3, 2, 1] :
tot = tot + 1
print(tot) - 5
What is the iteration variable in the following Python code:
friends = ['Joseph', 'Glenn', 'Sally']
for friend in friends :
print('Happy New Year:', friend)
print('Done!') - friend
What is a good description of the following bit of Python code?
zork = 0
for thing in [9, 41, 12, 3, 74, 15] :
zork = zork + thing
print('After', zork) - Sum all the elements of a list
What will the following code print out?