while evaluates
to true?
while num < 10:
num = num + 1
while loop when the boolean expression after the keyword
while becomes false?
num = 5
while num > 0:
print(num)
while loop with the following header ever stop?
while True: