Computer Tips and Tricks
Sunday, August 30, 2020
Python Program for while Loop
def countdown(n):
while(n>0):
print(n)
n=n-1
print("blast")
countdown(4)
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment