-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAi_guess_my_number.py
34 lines (25 loc) · 934 Bytes
/
Ai_guess_my_number.py
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
def main():
print('think of a number between 0 and 100')
min_value = 0
max_value = 100
while True:
query = min_value + (max_value - min_value) // 2
if check_is_answer(query):
# you know you have the right answer
break
if check_is_greater(query):
# you know the number must be greater than query
min_value = query + 1
else:
# you know the number must be less than query
max_value = query - 1
print('Your number was ', query)
def check_is_answer(value):
return ask_true_false('Is your number '+str(value)+'?')
def check_is_greater(value):
return ask_true_false('Is your number greater than '+str(value)+'?')
def ask_true_false(prompt):
response = input(prompt + ' (y/n) ')
return response == 'y' or response == 'Y'
if __name__ == "__main__":
main()