Skip to content
Snippets Groups Projects
Commit 15225c83 authored by K V Ragul's avatar K V Ragul
Browse files

assignment done

parent befdd8e9
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
'''for loop'''
i=int(0)
for i in range(49,20,-2):
print(i)
'''while loop'''
i=int(49)
while i>19 :
print(i)
i-=2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment