'BlackJack' is my personal take on reimplementing Casino BlackJack. 'BlackJack' is CLI game.
- If you are on Window, you need to open logic.py and, on line 6, replace
os.system('clear')
withos.system('cls')
. Then you can run main.py - If you are on Mac or Linux, you just need to run main.py.
This demo didn't cover:
- BlackJack
- Split rule
- Improve OOP knowledge
- Override
__repr__
to debug - String format
- Do not import variables
from A import x1
but practiceA.x1
instead.