-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapitals.py
232 lines (214 loc) · 5.21 KB
/
capitals.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import random
# an array of state dictionaries
# states = [
# {
# "name": "Alabama",
# "capital": "Montgomery"
# }, {
# "name": "Alaska",
# "capital": "Juneau"
# }, {
# "name": "Arizona",
# "capital": "Phoenix"
# }, {
# "name": "Arkansas",
# "capital": "Little Rock"
# }, {
# "name": "California",
# "capital": "Sacramento"
# }, {
# "name": "Colorado",
# "capital": "Denver"
# }, {
# "name": "Connecticut",
# "capital": "Hartford"
# }, {
# "name": "Delaware",
# "capital": "Dover"
# }, {
# "name": "Florida",
# "capital": "Tallahassee"
# }, {
# "name": "Georgia",
# "capital": "Atlanta"
# }, {
# "name": "Hawaii",
# "capital": "Honolulu"
# }, {
# "name": "Idaho",
# "capital": "Boise"
# }, {
# "name": "Illinois",
# "capital": "Springfield"
# }, {
# "name": "Indiana",
# "capital": "Indianapolis"
# }, {
# "name": "Iowa",
# "capital": "Des Moines"
# }, {
# "name": "Kansas",
# "capital": "Topeka"
# }, {
# "name": "Kentucky",
# "capital": "Frankfort"
# }, {
# "name": "Louisiana",
# "capital": "Baton Rouge"
# }, {
# "name": "Maine",
# "capital": "Augusta"
# }, {
# "name": "Maryland",
# "capital": "Annapolis"
# }, {
# "name": "Massachusetts",
# "capital": "Boston"
# }, {
# "name": "Michigan",
# "capital": "Lansing"
# }, {
# "name": "Minnesota",
# "capital": "St. Paul"
# }, {
# "name": "Mississippi",
# "capital": "Jackson"
# }, {
# "name": "Missouri",
# "capital": "Jefferson City"
# }, {
# "name": "Montana",
# "capital": "Helena"
# }, {
# "name": "Nebraska",
# "capital": "Lincoln"
# }, {
# "name": "Nevada",
# "capital": "Carson City"
# }, {
# "name": "New Hampshire",
# "capital": "Concord"
# }, {
# "name": "New Jersey",
# "capital": "Trenton"
# }, {
# "name": "New Mexico",
# "capital": "Santa Fe"
# }, {
# "name": "New York",
# "capital": "Albany"
# }, {
# "name": "North Carolina",
# "capital": "Raleigh"
# }, {
# "name": "North Dakota",
# "capital": "Bismarck"
# }, {
# "name": "Ohio",
# "capital": "Columbus"
# }, {
# "name": "Oklahoma",
# "capital": "Oklahoma City"
# }, {
# "name": "Oregon",
# "capital": "Salem"
# }, {
# "name": "Pennsylvania",
# "capital": "Harrisburg"
# }, {
# "name": "Rhode Island",
# "capital": "Providence"
# }, {
# "name": "South Carolina",
# "capital": "Columbia"
# }, {
# "name": "South Dakota",
# "capital": "Pierre"
# }, {
# "name": "Tennessee",
# "capital": "Nashville"
# }, {
# "name": "Texas",
# "capital": "Austin"
# }, {
# "name": "Utah",
# "capital": "Salt Lake City"
# }, {
# "name": "Vermont",
# "capital": "Montpelier"
# }, {
# "name": "Virginia",
# "capital": "Richmond"
# }, {
# "name": "Washington",
# "capital": "Olympia"
# }, {
# "name": "West Virginia",
# "capital": "Charleston"
# }, {
# "name": "Wisconsin",
# "capital": "Madison"
# }, {
# "name": "Wyoming",
# "capital": "Cheyenne"
# }]
test_list = [
{
"name": "South Dakota",
"capital": "Pierre"
}, {
"name": "Tennessee",
"capital": "Nashville"
}, {
"name": "Texas",
"capital": "Austin"
}]
random.shuffle(test_list)
for state in test_list:
state.update({'correct':0, 'incorrect':0})
def add_points():
state['correct']+=1
print(f"correct! you have {state['correct']} right and {state['incorrect']} wrong")
if state['correct'] + state['incorrect'] == 3:
play_again = input(f"You got {state['correct']} correct and {state['incorrect']} wrong. Would you like to play again?")
state.update({'correct':0, 'incorrect':0})
if play_again == "yes":
game_start()
else:
print("Thank you for playing!")
def sad_points():
state['incorrect']+=1
print(f"incorrect! you have {state['correct']} right and {state['incorrect']} wrong")
if state['correct'] + state['incorrect'] == 3:
play_again = input(f"You got {state['correct']} correct and {state['incorrect']} wrong. Would you like to play again?")
if play_again == "yes":
state.update({'correct':0, 'incorrect':0})
game_start()
else:
print("Thank you for playing!")
def game_start():
random.shuffle(test_list)
print("Do you know your capitals?")
for state in test_list:
capital = input(f"what is the capital of {state['name']}?")
if capital == f"{state['capital']}":
add_points()
else:
sad_points()
# play_again = input(f"You got {state['correct']} correct and {state['incorrect']} wrong. Would you like to play again?")
# if play_again == "yes":
# game_start()
# else:
# print("Thank you for playing!")
game_start()
# capital = input(f"what is the capital of {state['name']}?")
# state['correct']= state['correct']+1
# .update()
# for index in test_list:
# if input == test_list
# state_list = []
# for state in test_list:
# state_list.append(state['name'])
# for state in testList[index].items():
# print("name")
# capitals = input(f"What is the capital of {state}")