Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/geekcomputers/Python
/ show_some
Function
show_some
BlackJack_game/blackjack_rr.py:150–154 ·
view source on GitHub ↗
(player, dealer)
Source
from the content-addressed store, hash-verified
148
149
150
def
show_some(player, dealer):
151
print(
"\nDealer's Hand:"
)
152
print(
" { hidden card }"
)
153
print(
""
, dealer.cards[1])
154
print(
"\nYour Hand:"
, *player.cards, sep=
"\n "
)
155
156
157
def
show_all(player, dealer):
Callers
1
blackjack_rr.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected