Slot Machine Game in Python
Slot Machine Game in Python
import random
credit = 100
print('You have 100 credits!')
print('Each turn would cost 25, 50 or 100 credits.')
credit0 = 1
while (1 == 1):
choice = int(input('1 for trying at the slots, 2 for checking the credits, 3
for exiting the game: '))
if (choice >= 4):
print('Add the correct value!')
if (choice ==1):
while (1 == 1):
print('1 for 25 at stake, 2 for 50 at stake, 3 for 100 at stake.')