-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhangman.py
70 lines (55 loc) · 1.63 KB
/
hangman.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import random
print("H A N G M A N")
words = ['python', 'java', 'kotlin', 'javascript']
word = ""
status = ""
def reveal_letter(_guess):
global status
out = ""
for index, letter in enumerate(word):
if letter == _guess:
out = out + _guess
else:
out = out + status[index]
status = out
def main_loop():
global word
global status
word = random.choice(words)
status = "-" * len(word)
guessed_letters = ""
guesses = 0
while guesses < 8:
print()
print(status)
guess = input("Input a letter: ")
if len(guess) != 1:
print("You should input a single letter")
continue
if guess not in "abcdefghijklmnopqrstuvwxyz":
print("Please enter a lowercase English letter")
continue
if guess in guessed_letters:
print("You've already guessed this letter")
elif guess in word:
reveal_letter(guess)
guessed_letters = guessed_letters + guess
else:
guesses = guesses + 1
guessed_letters = guessed_letters + guess
print("That letter doesn't appear in the word")
if status == word:
break
if guesses < 8:
print()
print(status)
print("You guessed the word!")
print("You survived!")
else:
print("You lost!")
while True:
command = input('Type "play" to play the game, "exit" to quit: ')
if command == "play":
main_loop()
elif command == "exit":
break