Question: Please help Python, use example, thank you Arcade console, version 2 : Use a for loop to print Ready Player 1, Ready Player 2, Ready

Please help

Python, use example, thank you

Arcade console, version 2: Use a for loop to print "Ready Player 1", "Ready Player 2", "Ready Player ..." for every player. It is your choice how many players - if you choose to have six players, the loop should print six messages on six separate lines. (Hint: you can store the number of players you have in a variable. You can then use that variable to print the current player number as part of the message, each time the loop iterates.)

Note: The two scripts are independent of each other. You do not need to include in the Version 2 script what you did for the Version 1 script, or vice versa. For example, you do not need to count coins in Version 2; just list the "Ready Player ... " statements. Similarly, you do not need to list in Version 1 players beyond Player 1; just display the coin counts and display "Ready Player 1" once.

Example

numberOfCats = 4 catsFed = 0 print(catsFed, " cats are fed.") for i in range(numberOfCats): catsFed = catsFed + 1 print(catsFed, " cats are fed.")

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!