-
Notifications
You must be signed in to change notification settings - Fork 0
/
day7.py
86 lines (83 loc) · 1.09 KB
/
day7.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
#hangman game
import random
stages = ['''
+---+
| |
O |
/|\ |
/ \ |
|
=========
''', '''
+---+
| |
O |
/|\ |
/ |
|
=========
''', '''
+---+
| |
O |
/|\ |
|
|
=========
''', '''
+---+
| |
O |
/| |
|
|
=========''', '''
+---+
| |
O |
| |
|
|
=========
''', '''
+---+
| |
O |
|
|
|
=========
''', '''
+---+
| |
|
|
|
|
=========
''']
word_list=['andaman','nicobar','island']
chosen_word=random.choice(word_list)
lis=list(chosen_word)
print(lis)
print(chosen_word)
display=[]
for i in range(0,len(chosen_word)):
display+=['']
k=0
life=0
while(k<=7):
inp=input("Enter letter: ").lower()
if(inp not in chosen_word and range(0,len(stages))):
print(stages[life])
life+=1
for j in range(0,len(chosen_word)):
if(chosen_word[j]==inp):
display[j]=inp
print(display)
k+=1
if(' ' not in display):
print("You Win")
else:
print("You loose")
print(f'Correct word is {chosen_word}')