forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguessnumber2.py
More file actions
29 lines (22 loc) · 760 Bytes
/
guessnumber2.py
File metadata and controls
29 lines (22 loc) · 760 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
#!/usr/bin/env python
# coding=utf-8
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 are good.It is only %d, then you successed." % 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")