Skip to content
Snippets Groups Projects
Commit 531ff12e authored by D Vengatesh's avatar D Vengatesh
Browse files

q4 done

parent 0b2c48ee
No related branches found
No related tags found
No related merge requests found
Pipeline #50 canceled
'''using for loop'''
i=int(0)
for i in range(0,101,2) :
print(i)
'''using while loop'''
i=int(0)
while i<101 :
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