I Haz Codes

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Menu
Take the ups with the downs

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.

Information