Enter the code found below. It will display the numbers from 1 to 10.
Add an additional loop which will count back down from 10 to 1.
x = 1 while x <= 10: print(x) x = x + 1
Comments are closed.