-
Notifications
You must be signed in to change notification settings - Fork 29
/
main.py
44 lines (38 loc) · 1.22 KB
/
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
35
36
37
38
39
40
41
42
43
44
import turtle
import pandas as pd
screen = turtle.Screen()
screen.title("India States Game")
image = "India-state.gif"
screen.addshape(image)
turtle.shape(image)
data = pd.read_csv("states_data.csv")
all_states = data.state.to_list()
guessed_states = []
while len(guessed_states) < 29:
answer_state = screen.textinput(title=f"{len(guessed_states)}/29 states correct",
prompt="What's another state's name ?").title()
print(answer_state)
if answer_state == "Exit":
missing_states = []
for state in all_states:
if state not in guessed_states:
missing_states.append(state)
new_data = pd.DataFrame(missing_states)
new_data.to_csv("states_to_learn.csv")
break
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)
screen.exitonclick()
# Code to plot in images(.gif format)
# def get_mouse_click_corr(x, y):
# print(x, y)
#
#
# turtle.onscreenclick(get_mouse_click_corr)
# turtle.mainloop()