Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Michael V. Mannino

4th Edition

0615231047, 978-0615231044

More Books

Students also viewed these Databases questions

Question

Discuss all branches of science

Answered: 1 week ago

Question

Differentiate between hard and soft measures of service quality.

Answered: 1 week ago

Question

Be familiar with the different perspectives of service quality.

Answered: 1 week ago

Question

Describe key customer feedback collection tools.

Answered: 1 week ago