-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathword jumble.py
188 lines (133 loc) · 3.43 KB
/
word jumble.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
#jumble
count = 0
import random
WORDS = ("xylophone", "guitar", "bassoon", "piano",
"violin", "clarinet", "ukelele", "flute", "harp",
"saxophone", "banjo", "trombone", "recorder",
"harmonica", "tuba", "bongos", "tambourine")
# random
word = random.choice(WORDS)
# variable
correct = word
# jumble word (prob below)
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]
# game
print(
"""
\n\t\tWORD JUMBLE
""" )
print("\tWelcome to word jumble")
print("\tCan you unscramble the words?")
print("\tThey are all types of instruments\n")
input("\nPress enter to start ")
print("\nJUMBLE #1")
# jumble 1
print("\nThe jumble is:", jumble)
guess = input("\nYour guess: ")
if guess == correct:
print("\nYou got it!")
count += 1
else:
print("\nSorry that's not right" *1)
input("Press enter to continue")
# next jumble
import random
WORDS = ("xylophone", "guitar", "bassoon", "piano", "violin", "clarinet", "ukelele")
# random
word = random.choice(WORDS)
# variable
correct = word
# jumble word
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]
# jumble 2
print("\nJUMBLE #2")
print("\nThe jumble is:", jumble)
guess = input("\nYour guess: ")
if guess == correct:
print("\nYou got it!")
count += 1
else:
print("\nSorry that's not right" *1)
input("Press enter to continue")
import random
WORDS = ("xylophone", "guitar", "bassoon", "piano", "violin", "clarinet", "ukelele")
# random
word = random.choice(WORDS)
# variable
correct = word
# jumble word
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]
# jumble 3
print("\nJUMBLE #3")
print("\nThe jumble is:", jumble)
guess = input("\nYour guess: ")
if guess == correct:
print("\nYou got it!")
count += 1
else:
print("\nSorry that's not right" *1)
print("\n\tYou answered", count, "jumbles correctly!")
if count == 3:
print("\tYou're a jumble master!")
elif count ==2:
print("\tYou're a jumble junior!")
elif count ==1:
print("\tYou're a jumble beginner!")
elif count ==0:
print("\tYou're a jumble loser!")
input("\nPress enter to see your prize\n")
if count == 0:
print("\tWhat, really?! You got 0 correct!")
elif count ==1:
print("\tYou need 3/3 for a prize")
elif count ==2:
print("\tYou need 3/3 for a prize")
elif count ==3:
print(
"""
.''''.
o| |o
o| |o
o| |o
',__,'
| |
|__|
| |
|__|
| |
|--|
|__|
|__|
|--|
|__|
|__|
|__|
|__|
. - |__| - .
' ' |__| ' '
' '..'|__|'..' '
. .
' 8888 '
' '
: 8888 :
' ____ '
' (____) '
: o o :
'. o o .'
'-.,______,.-'
Gibson Gothic SG
"""
)
input("\n\nPress enter to exit")