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