Question
Python question Task 2 Create a function named poker_game that uses a parameter, num_players , to indicate the number of players participating in a poker
Python question
Task 2
Create a function named poker_game that uses a parameter, num_players, to indicate the number of players participating in a poker game. The function should generate and print num_players poker hands, one for each player. A poker hand should be printed in the same format that is described in Task 1.
Notes:
The function should print each hand on a separate line. Each line should begin a label to indicate which player (by number) the hand belongs to. For example, calling the poker_game function with three players might produce the following output:
Player 1: 9 10 A K 5
Player 2: 6 3 4 4 4
Player 3: A A 4 5 4
Hint #1: Try using a for loop to generate your output.
Hint #2: You could use poker_hand inside poker_game; that is, you could call one function inside another.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started