From 8670bf9a7e8e6a8bb79b4bba100a04c8d2270f52 Mon Sep 17 00:00:00 2001 From: Ismail Tlemcani Date: Wed, 30 Nov 2022 15:57:28 +0100 Subject: [PATCH] test commit --- scripts/Blackjack/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Blackjack/main.py b/scripts/Blackjack/main.py index 9681b37..526f93e 100644 --- a/scripts/Blackjack/main.py +++ b/scripts/Blackjack/main.py @@ -6,6 +6,7 @@ def deal_card(): """Returns a random card from the deck.""" cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10] card = random.choice(cards) + print('hello') return card