0
You need to calculate the points earned by a soccer teamThe team won 18 games and ended 7 games as a draw.A win brings 3 while 1
I am a beginner please help friends
2 Respuestas
0
in Python,
won = 18
draw = 7
winpoints = 3
drawpoints = 1
wontotal = won*winpoints
drawtotal = draw*drawpoints
ans = drawtotal+wontotal
print(ans)