Skip to content

Commit

Permalink
basic game
Browse files Browse the repository at this point in the history
  • Loading branch information
LordBaryhobal committed Feb 16, 2022
1 parent 0da9148 commit ec0d541
Showing 1 changed file with 84 additions and 1 deletion.
85 changes: 84 additions & 1 deletion 01_Acey_Ducey/acey_ducey.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,88 @@

COLORS = ["Hearts","Diamonds","Spade","Clubs"]

money = 100
cards = []
card1, card2 = None, None

def generate_cards():
global cards
cards = []
for i in range(13):
for j in range(4):
cards.append((i, j))

random.shuffle(cards)

def get_card():
global cards
return cards.pop()

def card_name(card):
name = str(card[0])

if card[0] == 0:
name = "Ace"
elif card[0] >= 10:
name = ["Jack","Queen","King"][card[0]-10]

color = COLORS[card[1]]

return f"{name} of {color}"

if __name__ == "__main__":
pass
running = True
print(" ----- Welcome to Acey Ducey ----- ")
print("You will be presented two cards. You can then")
print("bet some of your money if you think the next")
print("card will have a value between those cards.")
print("The game stops when you have no more money or")
print("if you type 'stop'.")
print()
print()

generate_cards()

while running:
card1 = get_card()
card2 = get_card()

print(f"The first card is: "+card_name(card1))
print(f"The second card is: "+card_name(card2))
print(f"Current balance: {money}")

while True:
bet = input("How much money do you want to bet ? ")
if bet == "stop":
running = False
break

if not bet.isdecimal():
print("Please enter a valid number")
continue

bet = int(bet)
if bet > money:
print("You can't bet more than you have !")
continue
break

if running == False:
break

card3 = get_card()
print(f"And the third card is: "+card_name(card3))
if (card1[0] < card3[0] < card2[0]) or (card2[0] < card3[0] < card1[0]):
print(f"Well done ! You won {bet}")
money += bet
else:
print(f"Oh no, you lost {bet}")
money -= bet

print()
print()

if money == 0:
print("It seems you've spent all your money")
print("Maybe next time you'll be more lucky")
running = False

0 comments on commit ec0d541

Please sign in to comment.