blackjack-theory-game/constants.py
2026-06-09 20:07:08 +02:00

3 lines
159 B
Python
Executable File

# Card-related constants
SUITS = ['clubs', 'diamonds', 'hearts', 'spades']
RANKS = ['02', '03', '04', '05', '06', '07', '08', '09', '10', 'J', 'Q', 'K', 'A']