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.
4 ответов
0
(18 * 3) + (7 * 1)
0
Thank you
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
0
Thanks