updated card mapping

This commit is contained in:
jandrews
2026-01-05 09:55:00 -05:00
parent 95ae6740d3
commit 5399ffd008
3 changed files with 6 additions and 2 deletions

View File

@@ -14,9 +14,13 @@ def deal_first():
dealer_show = Card()
if dealer_show == 1:
print("dealer shown card:"+ "Ace")
if dealer_show == 10:
if dealer_show == 11:
print("dealer shown card:"+ "Jack")
#continue code here to show the correct face based on what was drawn
if dealer_show == 12:
print("dealer shown code:"+ "Queen")
if dealer_show == 13:
print("dealer shown card:"+ "King")
print("dealer shown card:"+ str(dealer_show))