Skip to content

Commit 1d17414

Browse files
authored
Update hangman.py
1 parent 54d37e9 commit 1d17414

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Python_Begginer_Projects/Intermediate/hangman.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ def display_hangman(tries):
1010
------
1111
| |
1212
| O
13-
| /|\\
14-
| / \\
13+
| /|\
14+
| /|\
1515
|
1616
""",
1717
"""
1818
------
1919
| |
2020
| O
21-
| /|\\
22-
| /
21+
| /|\
22+
| / \
2323
|
2424
""",
2525
"""
2626
------
2727
| |
2828
| O
29-
| /|
29+
| /|\
3030
|
3131
|
3232
""",
@@ -111,4 +111,4 @@ def play_hangman():
111111
print(f"Sorry, you've run out of tries. The word was '{word}'.")
112112

113113
if __name__ == "__main__":
114-
play_hangman()
114+
play_hangman()

0 commit comments

Comments
 (0)