182,373 views
27 votes
27 votes
Finish the program by choosing the correct terms.

# Count the number of wins, losses. Find the sum of the opponent's points.
wins=0
losses = 0
sum = 0
_____ item in scores:

sum = sum + item[1]
if item[0] > item[1]
wins = wins +1
_____:

losses = losses +1

•Else
•For
•While

User Martinenzinger
by
3.0k points

2 Answers

19 votes
19 votes
What are the exact numbers
User Sinner
by
3.2k points
16 votes
16 votes

Answer:

For

Else

Explanation: Got it right

User GeoKlar
by
3.0k points