0
python game
https://code.sololearn.com/cIHNgzYGsGDx/#py this doest work as well i am prying to make a full map and it only comes up as the last part im confused
3 Réponses
+ 1
1. In order to display the full map, add an extra tab at the beginning of line 53.
From this:
print(output, end=line_end)
To this:
print(output, end=line_end)
2. Your “move_player” function doesn’t modify the player’s location. Instead, it keeps returning the same value.
0
thanks so much i have on more issue when i put in like up or down it doesn't fallow me on the map
0
Does the player’s position change when you put in “Left” or “Right”?