My Learning 2

 My Learning

while(True):
inp = int(input("enter number\n"))
if inp>100:
print("thanks\n")
break
else:
print("try again\n")
continue

Comments

Popular posts from this blog

Sets in Python

My Learnings