Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions loops_lab.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@


list_of_number = range(45, 210)

for num in list_of_number:
if num == 100:
continue

if num == 205:
break
print(num)


question = "what is the produt of 7*24?"
while int(input(question)) != 168:
print("Your Answer is wrong try again..")
else:
print("your answer is correct")