0
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
print(18*3-1*7)
3 Respuestas
+ 4
print(7*7-7)
+ 1
If a draw is one point, it's
print(18*3 + 7*1)
- 1
win = 18
draw = 7
print(win * 3 + draw)