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 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

4th Mar 2022, 5:46 PM
Ajitkumar Singh
2 Answers
4th Mar 2022, 6:25 PM
Jayakrishna 🇮🇳
0
in Python, won = 18 draw = 7 winpoints = 3 drawpoints = 1 wontotal = won*winpoints drawtotal = draw*drawpoints ans = drawtotal+wontotal print(ans)
4th Mar 2022, 7:19 PM
Chigozie Anyaeji 🇳🇬
Chigozie Anyaeji 🇳🇬 - avatar