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

Function showHand

BoardGame-CLI/uno.py:80–88  ·  view source on GitHub ↗
(player: int, playerHand: List[str])

Source from the content-addressed store, hash-verified

78
79
80def showHand(player: int, playerHand: List[str]) -> None:
81 print("Player {}'s Turn".format(players_name[player]))
82 print("Your Hand")
83 print("------------------")
84 y = 1
85 for card in playerHand:
86 print("{}) {}".format(y, card))
87 y += 1
88 print("")
89
90
91"""

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected