-
Notifications
You must be signed in to change notification settings - Fork 39
/
main.py
106 lines (93 loc) Β· 3.26 KB
/
main.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
94
95
96
97
98
99
100
101
102
103
104
105
106
# This is a sample Python script.
# Press Maj+F10 to execute it or replace it with your code.
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
import random
def hangman():
word = random.choice(["superman", "god", "benin", "lion", "animal", "surf", "waves", "spider", "hercules", "zeus",
"computer", "middle", "godzilla", "pericles", "europa", "africa", "asia"])
validLetters = 'abcdefghijklmnopqrstuvwxyz'
turns = 10
guessmade = ''
while len(word) > 0:
main = ""
missed = 0
for letter in word:
if letter in guessmade:
main = main + letter
else:
main = main + "_" + ""
if main == word:
print(main)
print("You win!")
break
print("Guess the word" + main)
guess = input()
if guess in validLetters:
guessmade = guessmade + guess
else:
print("Enter a valid character")
guess = input()
if guess not in word:
turns = turns - 1
if guess not in word:
turns -= 1
if turns == 9:
print("9 turns left")
print(" -------- ")
elif turns == 8:
print("8 turns left")
print(" -------- ")
print(" O ")
elif turns == 7:
print("7 turns left")
print(" -------- ")
print(" O ")
print(" | ")
elif turns == 6:
print("6 turns left")
print(" -------- ")
print(" O ")
print(" | ")
print(" / ")
elif turns == 5:
print("5 turns left")
print(" -------- ")
print(" O ")
print(" | ")
print(" / \ ")
elif turns == 4:
print("4 turns left")
print(" -------- ")
print(" \ O ")
print(" | ")
print(" / \ ")
elif turns == 3:
print("3 turns left")
print(" -------- ")
print(" \ O / ")
print(" | ")
print(" / \ ")
elif turns == 2:
print("2 turns left")
print(" -------- ")
print(" \ O /| ")
print(" | ")
print(" / \ ")
else:
print("You loose")
print("You let a kind man die")
print(" -------- ")
print(" O_| ")
print(" /|\ ")
print(" / \ ")
break
def guess():
name = input("Enter your name")
print("Welcome" + name)
print("------------------")
print('Try to guess the word in less than 18 attempts ')
hangman()
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
guess()
# See PyCharm help at https://www.jetbrains.com/help/pycharm/