-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhangman1.py
More file actions
110 lines (93 loc) · 3.55 KB
/
hangman1.py
File metadata and controls
110 lines (93 loc) · 3.55 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import random
def hangman():
print("hello world")
list_of_words = ["balenciaga","prada","jimmychoo","gucci","tommy","armanni","louisvuitton","zara","calvinklein","vanheusen"]
word=random.choice(list_of_words)
turns=10
guessmade=''
a=set('abcdefghijklmnopqrstuvwxyz')
while len(word)>0:
main_word=" "
for letter in word:
if letter in guessmade:
main_word = main_word + letter
else:
main_word = main_word + "_ "
if main_word == word:
print(main_word)
print("You guessed the word correctly!!!!!!YOU WON")
break
print("guess word,",main_word)
guess=input()
if guess in a:
guessmade=guessmade+guess
else:
print("Enter Valid Character")
guess=input()
if guess not in word:
turns=turns-1
if turns==9:
print("9 turns left!!!!")
print("------------------")
if turns==8:
print("8 turns left!!!!")
print("------------------")
print(" O ")
if turns==7:
print("7 turns left!!!!")
print("------------------")
print(" O ")
print(" | ")
if turns==6:
print("6 turns left!!!!")
print("------------------")
print(" O ")
print(" | ")
print(" / ")
if turns==5:
print("5 turns left!!!!")
print("------------------")
print(" O ")
print(" | ")
print(" / \ ")
if turns==4:
print("4 turns left!!!!")
print("------------------")
print(" \O ")
print(" | ")
print(" / \ ")
if turns==3:
print("3 turns left!!!!")
print("------------------")
print(" \O/ ")
print(" | ")
print(" / \ ")
if turns==2:
print("2 turns left!!!!")
print("------------------")
print(" \O/ | ")
print(" | ")
print(" / \ ")
if turns==1:
print("1 turn left!!!!")
print("Hangman on last breaths")
print("------------------")
print(" \O/| ")
print(" | ")
print(" / \ ")
if turns==0:
print("0 turn left!!!!")
print("Your Hangman is dead now")
print("------------------")
print(" O_| ")
print(" /|\ ")
print(" / \ ")
break
name=input("Enter Your Name")
print("Welcome",name,"to this game of Hangman")
print("-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-")
print("Try Guessing the word in less than 10 Attempts!")
print(" * * ")
print(" ^ ")
print(" ------ ")
hangman()