Skip to content

Commit

Permalink
learning
Browse files Browse the repository at this point in the history
  • Loading branch information
watchout254 authored Oct 1, 2023
1 parent 3bec74f commit 914c65c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions breakconpass.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#count=1
#while count <= 10:
#print(count)
#count += 1

#if count == 7:
# continue
#print("Hi")
#print("Out of loop")

#list1 = ["hi","hello","Welcome"]
#names = ["krishnn","Ram","madhav"]
#for item in list1:
# for name in names:
# print(item,name)
# if item == "hello" and name == "Ram":
# break
# print("out from inner loop")
#print("out of outer loop")
for i in range(1,11):
if i == 7:
continue
else:
print(i)

0 comments on commit 914c65c

Please sign in to comment.