forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq43.py
More file actions
24 lines (20 loc) · 705 Bytes
/
q43.py
File metadata and controls
24 lines (20 loc) · 705 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
#!/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 {0}, then you successed.".format(guess))
break
elif number > int(num_input):
print("your number is smaller.")
elif number < int(num_input):
print("your number is bigger.")