Skip to content

Instantly share code, notes, and snippets.

@martin-martin
Created June 23, 2020 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martin-martin/d2f0bf7a6187a4e05d847b06e2bcee1d to your computer and use it in GitHub Desktop.
Save martin-martin/d2f0bf7a6187a4e05d847b06e2bcee1d to your computer and use it in GitHub Desktop.
import random
num = random.randint(1, 10)
guess = None
while guess != num:
guess = input("guess a number between 1 and 10: ")
guess = int(guess)
if guess == num:
print("congratulations! you won!")
break
else:
print("nope, sorry. try again!")
@James704407704407
Copy link

Thanks so much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment