Question: You want to print out the numbers 20, 19, 18, 17, and 16. Iterative statement
i = 20 for i in range(15): print(i)
i = 20 while i > 15: print(i) i = i - 1
i = 20 while i < 15: print(i)
i = 20 for i in [20, 16]: print(i)