Question: The question is: Write a statement that compares the values of score1 and score2 and takes the following actions. When score1 exceeds score2, the message

The question is:

Write a statement that compares the values of score1 and score2 and takes the following actions. When score1 exceeds score2, the message "player1 wins" is printed to standard out. When score2 exceeds score1, the message "player2 wins" is printed to standard out. In each case, the variables player1Wins,, player1Losses, player2Wins, and player2Losses,, are incremented when appropriate.

Finally, in the event of a tie, the message "tie" is printed and the variable tieCount is incremented.

So far this is what I have:

if score1>score2: player1Wins=player1Wins+1 player2Losses=player2Losses+1 print("player1Wins") elif score2>score1 player2Wins=player2Wins+1 player1Losses=player1Losses+1 print("player2Wins") else: score1=score2 tieCount=tieCount+1 print("tie")

___________________________

However, I'm still getting an error and not sure why. Am I indenting something wrong?

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!