67.8k views
0 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

2 Answers

3 votes
What are the exact numbers
User Michiel Dral
by
3.9k points
6 votes

Answer:

For

Else

Explanation: Got it right

User TaherT
by
4.2k points