Skip to content
Snippets Groups Projects
Commit 5caeb294 authored by Vivin Balaji K S 's avatar Vivin Balaji K S
Browse files

done

parent ea7e7565
No related branches found
No related tags found
No related merge requests found
Pipeline #106 canceled
print("for loop ")
for i in range(0,100):
if i%2==0:
print(i,end=' ')
j=0
print()
print("while loop ")
while j<100:
if j%2==0:
print(j,end=' ')
j=j+1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment