-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathhangmanGame.py
93 lines (67 loc) · 2.3 KB
/
hangmanGame.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import random
name = input('Enter your name: ')
print("welcome",name,"let's play hangman!!!\n")
level = int(input('\nEnter dififculty level ( 1 | 2 | 3) : '))
print(' ')
if level==1:
lives = 9
elif level ==2:
lives = 7
elif level == 3:
lives = 5
def run():
L=['cushion','refrigerator','tennis','badminton','speaker','country','curtain','animal','movie','penguin','hamster','omnivore','alien','bullet','field','travel','huge','destroy','pastry']
word = L[random.randint(0,len(L)-1)]
list_word_1 = list(word)
list_word_2 = list(word)
for i in range(len(list_word_1)):
list_word_1[i] = ' '
print(lives,'lives remaining ')
print(list_word_1)
def play():
count = 0
guess = input('Enter a letter: ')
for i in range(len(list(word))):
if list_word_2[i]==guess:
list_word_1[i]=guess
count+=1
if count==0:
global lives
lives = lives-1
print(lives,'lives remaining')
if list_word_1==list_word_2:
print('\ncongratulations you won !')
print(list_word_2)
ask = input('Do you want to play again ?')
if ask == 'no':
quit()
elif ask=='yes':
level = int(input('\nEnter dififculty level ( 1 | 2 | 3) : \n'))
print(' ')
if level==1:
lives = 9
elif level ==2:
lives = 7
elif level == 3:
lives = 5
run()
elif lives==0:
print('\nyou lost better luck next time !')
print('the correct word is',word)
ask = input('Do you want to play again ?')
if ask == 'no':
quit()
elif ask=='yes':
level = int(input('\nEnter dififculty level ( 1 | 2 | 3) : \n'))
print(' ')
if level==1:
lives = 9
elif level ==2:
lives = 7
elif level == 3:
lives = 5
run()
print(list_word_1)
play()
play()
run()