Skip to content

Instantly share code, notes, and snippets.

@rami3564
rami3564 / blackjack.py
Created November 19, 2023 10:46 — forked from getmehire/blackjack.py
Python BlackJack Game
import random
# global variables
suits = ('Hearts', 'Diamonds', 'Spades', 'Clubs') # Tuples
ranks = ('Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten', 'Jack', 'Queen', 'King', 'Ace')
values = {
'Two':2,
'Three':3,
'Four':4,
'Five':5,
'Six':6,