-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroulette.py
More file actions
217 lines (152 loc) · 4.91 KB
/
Copy pathroulette.py
File metadata and controls
217 lines (152 loc) · 4.91 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
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
# roulette
import random
#######
bankRoll = 1000
#######
choiceList = ["color", "third", "number"]
colorList = ["green", "black", "red"]
thirdList = ["first", "second", "third"]
firstThird = range(1, 12)
secondThird = range(13, 24)
thirdThird = range(25, 36)
#########
def bankrollLose():
print("You lost " + str(betAmount) + "!")
betLose = (int(bankRoll) - int(betAmount))
print("Your bankroll is now" + " $" + str(betLose))
def betPriceFunc():
global betAmount
betAmount = input("How much would you like to bet? ")
spinFunc()
# Win/Lose for color
def colorWin():
print("You won" + " $" + str(betAmount) + "!")
betWin = bankRoll + int(betAmount)
print("Your bankroll is now" + " $" + str(betWin))
playAgainFunc()
def colorLose():
bankrollLose()
playAgainFunc()
# Win/Lose for third
def thirdWin():
print("You won" + " $" + str(int(betAmount) * 2) + "!")
betWin = bankRoll + (int(betAmount) * 2)
print("Your bankroll is now" + " $" + str(betWin))
playAgainFunc()
def thirdLose():
bankrollLose()
playAgainFunc()
# Win/Lose for number
def numberWin():
print("You won" + " $" + str(int(betAmount) * 35) + "!")
betWin = bankRoll + (int(betAmount) * 35)
print("Your bankroll is now" + " $" + str(betWin))
playAgainFunc()
def numberLose():
bankrollLose()
playAgainFunc()
# Invalid Selection
def invalidFunc():
tryAgain = input("Invalid selection, try again? Y/N ")
if tryAgain in ["yes", "y"]:
rouletteFunc()
else:
print("Cancelled.")
# Generates random number assigned to color, "spins"
def spinFunc():
global x
x = random.randint(0, 36)
global black
black = (2, 4, 6, 8, 10, 11, 13, 15, 17,
20, 22, 24, 26, 28, 29, 31, 33, 35)
global red
red = (1, 3, 5, 7, 9, 12, 14, 16, 18,
19, 21, 23, 25, 27, 30, 32, 34, 36)
if x in black:
print("Black, " + str(x))
if x in red:
print("Red, " + str(x))
if x == 0:
print("Green, " + str(x))
# Roulette game
def rouletteFunc():
global betPrompt
betPrompt = input("Tubby Roulette - Color, Number, or Third? ")
betPrompt = betPrompt.lower().strip()
if betPrompt == choiceList[0]:
color = input("Which color would you like to bet on? ")
color = color.lower().strip()
if color == colorList[0]:
betPriceFunc()
if x == 0:
colorWin()
if x != 0:
colorLose()
elif color == colorList[1]:
betPriceFunc()
if x in black:
colorWin()
else:
colorLose()
elif color == colorList[2]:
betPriceFunc()
if x in red:
colorWin()
else:
colorLose()
if betPrompt == choiceList[1]:
thirds = input("Which third would you like to bet on? ")
thirds = thirds.lower().strip()
if thirds == thirdList[0]:
betPriceFunc()
if x in firstThird:
thirdWin()
else:
thirdLose()
if thirds == thirdList[1]:
betPriceFunc()
if x in secondThird:
thirdWin()
else:
thirdLose()
if thirds == thirdList[2]:
betPriceFunc()
if x in thirdThird:
thirdWin()
else:
thirdLose()
if betPrompt.lower() == choiceList[2]:
number = input("Which number would you like to bet on? ")
number = number.strip()
if number.isnumeric():
if 36 < int(number):
print("Number is too high; pick a number from 0 to 36")
invalidFunc()
if 36 >= int(number) >= 0:
betPriceFunc()
if x == int(number):
numberWin()
if x != int(number):
numberLose()
if 0 > int(number):
print("Number is too low; pick a number from 0 to 36")
invalidFunc()
else:
print(str(number) + " " + "is not numeric.")
invalidFunc()
else:
invalidFunc()
# Allows user to play again
def playAgainFunc():
playAgain = input("Play again? Y/N ")
playAgain == playAgain.lower().strip()
if playAgain in ("yes", "y"):
rouletteFunc()
elif playAgain in ("no", "n"):
print("Cancelled.")
else:
pass
# INVALID OPTIONS
if betPrompt.lower() not in choiceList:
invalidFunc()
rouletteFunc()