0

Help

I can’t get this: You need to calculate the points earned by a soccer team. The team won 18 games and ended 7 games as a draw. A win brings 3 points, while a draw brings 1.

26th Sep 2021, 6:29 AM
dahillma
4 ответов
0
(18 * 3) + (7 * 1)
26th Sep 2021, 6:38 AM
Arun Ruban SJ
Arun Ruban SJ - avatar
0
Thank you
26th Sep 2021, 6:46 AM
dahillma
0
win = 18 draw = 7 if win == 18: print(win * 3) if drow == 7: print(draw * 1) This is just math ^ nothing else you have to learn the very basics
26th Sep 2021, 6:46 AM
AquazDev
AquazDev - avatar
0
Thanks
26th Sep 2021, 6:48 AM
dahillma