Skip to content

Commit 813aad4

Browse files
author
Shubhrima Jana
committed
Made suggested changes
1 parent 0f83614 commit 813aad4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Guess the Countries/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<p> Guess the name of the countries on the world map and score a point with every correct guess.</p>
44

55
# Output
6-
<img src="blank.png" width="350"/>
7-
<img src="guessed_countries.png" width="350"/>
6+
![blank](blank.png)
7+
![blank](guessed_countries.png)
88

99
# Author(s)
1010
Shubhrima Jana

Guess the Countries/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
screen=turtle.Screen()
66

77
screen.title('Name the Countries')
8-
image='world_map.gif'
8+
image='./Guess the Countries/world_map.gif'
99
correct=0
1010

1111
screen.setup(width=800,height=500)
1212
screen.addshape(image)
1313
turtle.shape(image)
1414

15-
data=pandas.read_csv("country_names.csv")
15+
data=pandas.read_csv("./Guess the Countries/country_names.csv")
1616
countries= data.country.to_list()
1717
color = ['red','green','brown','orange','blue']
1818
random_color= random.randint(0,4)

0 commit comments

Comments
 (0)