rickyrick2000

test.py

Jun 6th, 2022
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | None | 0 0
  1. import time
  2.  
  3. n = 1
  4. while n < 20:
  5.     print(n)
  6.     time.sleep(1)
  7.     n += 1
Advertisement
Add Comment
Please, Sign In to add comment