forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguessnumber.py
More file actions
30 lines (24 loc) · 795 Bytes
/
guessnumber.py
File metadata and controls
30 lines (24 loc) · 795 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
#coding:utf-8
'''
filename: guessnumber.py
'''
import random
number = random.randint(1,100)
guess = 0
while True:
num_input = input("please input one integer that is in 1 to 100:")
guess += 1
if not num_input.isdigit():
print("Please input interger.")
elif int(num_input) < 0 or int(num_input) >= 100:
print("The number should be in 1 to 100.")
else:
if number == int(num_input):
print("OK, you've done well.It is only %d, then you succeed." % guess)
break
elif number > int(num_input):
print("your number is smaller.")
elif number < int(num_input):
print("your number is bigger.")
else:
print("There is something bad, I will not work")