-
Notifications
You must be signed in to change notification settings - Fork 0
/
flowerGuess.py
233 lines (197 loc) · 7.13 KB
/
flowerGuess.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import random
def hydrangea():
hydrangea_list = "Hydrangea"
print("Guess the 9 characters: _ _ _ _ _ _ _ _ _")
attempt = len(hydrangea_list)
print(f"You have {attempt} more attempt(s).")
guessed = ""
fail = 0
while fail < attempt:
user_input = input("\nEnter a character: ")
if user_input in hydrangea_list:
print(f"Great guess! {user_input} is in the word.\n")
guessed += user_input
else:
fail += 1
print(f"There is no such character in the word. "
f"You have {attempt-fail} attempt(s) left.\n")
completed = len(hydrangea_list)
#print the current letter
for letter in hydrangea_list:
if letter in guessed:
print(f"{letter} ", end="")
completed -= 1
else:
print(f"_ ", end="")
if completed == 0:
print(f"Congrats, you won! The secret word is {hydrangea_list}.")
break
else:
print("\nYou have run out of the attempts. Better luck next time!")
def orchid():
orchid_list = "Orchid"
print("Guess the 6 characters: _ _ _ _ _ _")
attempt = len(orchid_list)
print(f"You have {attempt} attempt(s).")
guessed = ""
fail = 0
while fail < attempt:
user_input = input("\nEnter a character: ")
if user_input in orchid_list:
print(f"Great guess! {user_input} is in the word.\n")
guessed += user_input
else:
fail += 1
print(f"There is no such character in the word. "
f"You have {attempt-fail} attempt(s) left.\n")
completed = len(orchid_list)
#print the current letter
for letter in orchid_list:
if letter in guessed:
print(f"{letter} ", end="")
completed -= 1
else:
print(f"_ ", end="")
print()
if completed == 0:
print(f"Congrats, you won! The secret word is {orchid_list}.")
break
else:
print("You have run out of the attempts. Better luck next time!")
def marigold():
marigold_list = "Marigold"
print("Guess the 8 characters: _ _ _ _ _ _ _ _")
attempt = len(marigold_list)
print(f"You have {attempt} more attempt(s).")
guessed = ""
fail = 0
while fail < attempt:
user_input = input("\nEnter a character: ")
if user_input in marigold_list:
print(f"Great guess! {user_input} is in the word.\n")
guessed += user_input
else:
fail += 1
print(f"There is no such character in the word. "
f"You have {attempt-fail} attempt(s) left.\n")
completed = len(marigold_list)
#print the current letter
for letter in marigold_list:
if letter in guessed:
print(f"{letter} ", end="")
completed -= 1
else:
print(f"_ ", end="")
if completed == 0:
print(f"\nCongrats, you won! The secret word is {marigold_list}.")
break
else:
print("\nYou have run out of the attempts. Better luck next time!")
def calendula():
calendula_list = "Calendula"
print("Guess the 9 characters: _ _ _ _ _ _ _ _ _")
attempt = len(calendula_list)
print(f"You have {attempt} more attempt(s).")
guessed = ""
fail = 0
while fail < attempt:
user_input = input("\nEnter a character: ")
if user_input in calendula_list:
print(f"Great guess! {user_input} is in the word.\n")
guessed += user_input
else:
fail += 1
print(f"There is no such character in the word. "
f"You have {attempt-fail} attempt(s) left.\n")
completed = len(calendula_list)
#print the current letter
for letter in calendula_list:
if letter in guessed:
print(f"{letter} ", end="")
completed -= 1
else:
print(f"_ ", end="")
if completed == 0:
print(f"Congrats, you won! The secret word is {calendula_list}.")
break
else:
print("\nYou have run out of the attempts. Better luck next time!")
def jasmine():
jasmine_list = "Jasmine"
print("Guess the 7 characters: _ _ _ _ _ _ _")
attempt = len(jasmine_list)
print(f"You have {attempt} more attempt(s).")
guessed = ""
fail = 0
while fail < attempt:
user_input = input("\nEnter a character: ")
if user_input in jasmine_list:
print(f"Great guess! {user_input} is in the word.\n")
guessed += user_input
else:
fail += 1
print(f"There is no such character in the word. "
f"You have {attempt-fail} attempt(s) left.\n")
completed = len(jasmine_list)
#print the current letter
for letter in jasmine_list:
if letter in guessed:
print(f"{letter} ", end="")
completed -= 1
else:
print(f"_ ", end="")
if completed == 0:
print(f"Congrats, you won! The secret word is {jasmine_list}.")
break
else:
print("\nYou have run out of the attempts. Better luck next time!")
def dandelion():
dandelion_list = "Dandelion"
print("Guess the 9 characters: _ _ _ _ _ _ _ _ _")
attempt = len(dandelion_list)
print(f"You have {attempt} more attempt(s).")
guessed = ""
fail = 0
while fail < attempt:
user_input = input("\nEnter a character: ")
if user_input in dandelion_list:
print(f"Great guess! {user_input} is in the word.\n")
guessed += user_input
else:
fail += 1
print(f"There is no such character in the word. "
f"You have {attempt-fail} attempt(s) left.\n")
completed = len(dandelion_list)
#print the current letter
for letter in dandelion_list:
if letter in guessed:
print(f"{letter} ", end="")
completed -= 1
else:
print(f"_ ", end="")
if completed == 0:
print(f"Congrats, you won! The secret word is {dandelion_list}.")
break;
else:
print("\nYou have run out of the attempts. Better luck next time!")
# Main program
play_again = True
while play_again:
print("Theme: Flower.")
rand_num = random.randint(1,6)
if rand_num == 1:
hydrangea()
elif rand_num == 2:
orchid()
elif rand_num == 3:
marigold()
elif rand_num == 4:
calendula()
elif rand_num == 5:
jasmine()
else:
dandelion()
user_input = input("Do you want to play again? (y/n): ").lower()
if user_input == "n":
print("Goodbye!")
play_again = False