Commit f4e8e955 by BellCodeEditor

save project

parent 014b7128
Showing with 6 additions and 7 deletions
a=0
while a<10 and a!=3 and a!=7:
if a<10 and a!=3 and a!=7:
a+=1
print(a)
else:
a+=1
\ No newline at end of file
while a<10:
a+=1
if a==3 or a==7:
continue
print(a)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment