Do Now 2.07

How would you print out something 10 times? What about 100? What about 1,000? Can you remember something from Snap! that might allow that?


Open up the terminal. Type the following code using interactive mode.

while True: 
    print('a')

What happens when you run this code?

Try using other Boolean expressions instead of True (e.g. 4 > 5 and 9 != 2), and explore what happens.