Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesh-Chandran005 authored Nov 18, 2024
1 parent 3e0c092 commit f59706c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Day-8/ganesh8.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
'''author:Ganesh
18/11/24
Loop control statements'''

numbers=[1,12,44,32,3,4,55,66]
for i in numbers:
if i==55:
break
print(i,end=" ",)

print(" ")

for j in numbers:
if i%2==0:
continue
print(j,end=" ")
print(" ")
for k in numbers:
if k*2==88:
pass
print(k,end=" ")

0 comments on commit f59706c

Please sign in to comment.