Skip to content

Commit 9d3caf9

Browse files
Merge pull request geekcomputers#506 from thiru15/patch-1
Update Blackjack Game.py
2 parents f500cca + c5ef4ff commit 9d3caf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Blackjack Game.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, suit, rank):
2121
else:
2222
self.suit = None
2323
self.rank = None
24-
print "Invalid card: ", suit, rank
24+
print("Invalid card: ", suit, rank)
2525

2626
def __str__(self):
2727
return self.suit + self.rank

0 commit comments

Comments
 (0)