Advertisement
imtiazaasif

while loop basic python

May 3rd, 2020
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.06 KB | None | 0 0
  1. i = 1
  2. while i <= 5 :
  3.     print(i)
  4.     i = i+1
  5. print("done")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement