-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnumber_guess.py
More file actions
36 lines (28 loc) · 880 Bytes
/
number_guess.py
File metadata and controls
36 lines (28 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import random
top_of_range = input("Type a number: ")
if top_of_range.isdigit():
top_of_range = int(top_of_range)
if top_of_range <=0:
print('Please type a number larger than 0 next time. ')
quit()
else:
print('Please type a number next time. ')
quit()
random_number = random.randint(0, top_of_range)
guesses = 0
while True:
guesses += 1
user_guess = input('Make a guess: ')
if user_guess.isdigit():
user_guess = int(user_guess)
else:
print('Please type a number')
continue
if user_guess == random_number:
print("You got it! ")
break
elif user_guess > random_number:
print("You were above the number!")
else:
print("You were below the number!")
print("You got it in", guesses, "guesses")