-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy path2- Guess the Number.py
111 lines (71 loc) · 2.49 KB
/
2- Guess the 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# template for "Guess the number" mini-project
# input will come from buttons and an input field
# all output for the game will be printed in the console
# import modules
import random
import math
import simplegui
#------------------------------------------
# declaring global variables
secret_number = 0
num_range = 100
remaining_guesses = 0
#------------------------------------------
# helper function to start and restart the game
def new_game():
print "----------------------------------------"
print "----------------------------------------"
print "New game. Range is from 0 to", num_range
global secret_number, remaining_guesses
secret_number = random.randrange(0, num_range)
remaining_guesses = int( math.ceil(math.log(num_range, 2)) )
print "Total Guesses:", remaining_guesses
#------------------------------------------
# define event handlers for control panel
def range100():
# button that changes the range to [0,100) and starts a new game
global num_range
num_range = 100
new_game()
def range1000():
# button that changes the range to [0,1000) and starts a new game
global num_range
num_range = 1000
new_game()
def reset():
new_game()
def input_guess(guess):
global remaining_guesses
guess = int(guess)
print "Guess was", guess
if guess < secret_number:
print "Higher!"
elif guess > secret_number:
print "Lower!"
else:
print "Correct!"
new_game()
return
remaining_guesses -= 1
print ""
print "Number of remaining guesses is :", remaining_guesses
if remaining_guesses == 0:
print "You ran out of guesses :( The secret number was", secret_number
new_game()
#------------------------------------------
# create frame
frame = simplegui.create_frame("Guess the Number", 200, 200)
#------------------------------------------
# register event handlers for control elements and start frame
frame.add_button("Range is [0, 100)", range100, 200)
frame.add_button("Range is [0, 1000)", range1000, 200)
frame.add_input("Enter a guess", input_guess, 200)
frame.add_button("New Game", reset, 200)
#------------------------------------------
# call new_game
new_game()
#------------------------------------------
# starting the frame
frame.start()
#------------------------------------------
# always remember to check your completed program against the grading rubric