Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 12, 2020 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/161b300d05cb13225c76e3f30f6f9409 to your computer and use it in GitHub Desktop.
Save parzibyte/161b300d05cb13225c76e3f30f6f9409 to your computer and use it in GitHub Desktop.
def imprimirAhorcado():
if intentos == 1:
print("""
___
| |
_O/ |
| |
/ \ |
______|
""")
elif intentos == 2:
print("""
___
| |
_O/ |
| |
\ |
______|
""")
elif intentos == 3:
print("""
___
| |
_O/ |
| |
|
______|
""")
elif intentos == 4:
print("""
___
| |
_O/ |
|
|
______|
""")
elif intentos == 5:
print("""
___
| |
O/ |
|
|
______|
""")
elif intentos == 6:
print("""
___
| |
O |
|
|
______|
""")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment