-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
34 lines (30 loc) · 1022 Bytes
/
main.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
import turtle
import pandas
screen = turtle.Screen()
screen.title('U.S. States Game')
image = 'blank_states_img.gif'
screen.addshape(image)
turtle.shape(image)
guessed_states = []
data = pandas.read_csv('50_states.csv')
all_states= data.state.tolist()
game_is_on=True
missing_states=[]
while len(guessed_states)<50:
answer_state = screen.textinput(title=f'{len(guessed_states)}/50states correct', prompt='What"s another state"s name?').title()
if answer_state in all_states:
guessed_states.append(answer_state)
t = turtle.Turtle()
t.hideturtle()
t.penup()
state_data=data[data.state==answer_state]
t.goto(int(state_data['x']), int(state_data['y']))
t.write(answer_state)
if answer_state =='Exit':
for state in all_states:
if state not in guessed_states:
missing_states.append(state)
new_data = pandas.DataFrame(missing_states)
new_data.to_csv('missing_state.csv')
break
screen.exitonclick()