Competition

Report a typo

Today you are taking part in a chess competition. You will get the 'winner' status and the largest amount of money if you win all the games. Much is at stake!

The results are stored in a list. Fill in the blanks in the code below and determine how much money you won.

You DON'T need to print the answer.

Write a program in Python 3
check = ...([True, True, 0, 1, True])

if ...:
status = 'winner'
else:
status = 'loser'

if status == ...:
winning_sum = 100
else:
winning_sum = 10
___

Create a free account to access the full topic