Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- for x in range(1):
- random_number = random.randint(0,100000)
- print("Try to guess the random number.")
- input()
- if input == random_number:
- print("Well done! You guessed the random number correctly!")
- else:
- print("No. That is incorrect.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement