MCPcopy Index your code
hub / github.com/geekcomputers/Python / show_all

Function show_all

BlackJack_game/blackjack_rr.py:157–161  ·  view source on GitHub ↗
(player, dealer)

Source from the content-addressed store, hash-verified

155
156
157def show_all(player, dealer):
158 print("\nDealer's Hand:", *dealer.cards, sep="\n ")
159 print("Dealer's Hand =", dealer.value)
160 print("\nYour Hand:", *player.cards, sep="\n ")
161 print("Your Hand =", player.value)
162
163
164def player_busts(player, dealer, chips):

Callers 1

blackjack_rr.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected