Skip to content

Commit

Permalink
Update Blackjack Game.py
Browse files Browse the repository at this point in the history
fixed the syntax error on line 24
  • Loading branch information
thiru15 authored Jul 14, 2019
1 parent f276f34 commit c5ef4ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Blackjack Game.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, suit, rank):
else:
self.suit = None
self.rank = None
print "Invalid card: ", suit, rank
print("Invalid card: ", suit, rank)

def __str__(self):
return self.suit + self.rank
Expand Down

0 comments on commit c5ef4ff

Please sign in to comment.