Skip to content

Instantly share code, notes, and snippets.

@matael
Created January 18, 2013 17:08
Show Gist options
  • Select an option

  • Save matael/4566164 to your computer and use it in GitHub Desktop.

Select an option

Save matael/4566164 to your computer and use it in GitHub Desktop.
def affichage(self):
corres = {
'Terre' : ' ',
'Mur' : 'X',
'Eau' : '~',
'Trou' : 'O'
}
for i in map:
for j in i:
print(corres[i])
print('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment