0
Create a program to calculate and output the total points earned by the team
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
3 Respuestas
+ 3
What have u done so far?
+ 10
Omoh Eginye ,
▪︎the first operation has to be a multiplication, not a division.
▪︎there is an opening parenthesis missing.
(18*3)+(1*7)
^ ^
use print to output this expression.
+ 1
Please show your code attempt so we can help you.
Aside from that, it is only math: Solve it with pen and paper when you can't come up with the code and then translate it into python