Does anybody know the answer im confused | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Does anybody know the answer im confused

the question is 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. (python)

28th Mar 2022, 10:29 AM
๐Ÿ’ซ๐˜™๐˜ข๐˜บ๐˜บ๐˜ข๐˜ฏ๐Ÿ’ซ
14 Answers
+ 4
18 wins , and win means 3 points so 18 wins = 18*3 7 draws, a draw give you 1 point so total 7 draws points = 7*1 Total = 18*3 + 7*1 => 61
28th Mar 2022, 10:38 AM
Jayakrishna ๐Ÿ‡ฎ๐Ÿ‡ณ
+ 4
Look, it's simple enough - The team has won 18 matches and each win brings 3 points... And it has ended 7 matches as a draw and each draw brings 1 point... So it is simple ::- ( print((18 * 3) + (7 * 1))
29th Mar 2022, 6:49 AM
Dikshant Sharma
Dikshant Sharma - avatar
+ 1
A win brings 3 points, while a draw brings 1. It means you're getting 3 points for each win and 1 point for making draw. If you have 4 wins you get 4*3 = 12 points
28th Mar 2022, 10:37 AM
Simba
Simba - avatar
+ 1
So, first it will multiply 18 * 3 and then 7 * 1 and then add them to get the final and total score... ๐Ÿ‘๐Ÿป Hope it helped you
29th Mar 2022, 6:50 AM
Dikshant Sharma
Dikshant Sharma - avatar
+ 1
In this question we need to multiply the given values as the questions says 18 points and 3 point for each and in the next sentence it says 7 points and 1point for each so the equation will be Print((18*3)+(7*1))
30th Mar 2022, 3:34 AM
Anish Somanathapillai
+ 1
Can you please vote my answers if it is correct
30th Mar 2022, 3:36 AM
Anish Somanathapillai
0
What's your try?
28th Mar 2022, 10:30 AM
Jayakrishna ๐Ÿ‡ฎ๐Ÿ‡ณ
0
See its 18 wins and for every win 3 points. So 18 times 3 i.e. (18*3) and for every draw 1 point So 7 time 1 i.e. (7*1) or only 7 so for output in python print((18*3)+7) thats it..
30th Mar 2022, 3:01 AM
Johnny Doe
0
It is very easy simple calculation . Wins * score for wins + draws * score for drow Total = 18*3+7*1 = 61
30th Mar 2022, 6:58 AM
ุจุฏูŠ ู…ุญู…ุฏ
ุจุฏูŠ ู…ุญู…ุฏ - avatar
- 1
uhh anybody pls help
28th Mar 2022, 10:37 AM
๐Ÿ’ซ๐˜™๐˜ข๐˜บ๐˜บ๐˜ข๐˜ฏ๐Ÿ’ซ
- 1
Ty
28th Mar 2022, 10:38 AM
๐Ÿ’ซ๐˜™๐˜ข๐˜บ๐˜บ๐˜ข๐˜ฏ๐Ÿ’ซ
- 1
Tyyy
29th Mar 2022, 6:51 AM
๐Ÿ’ซ๐˜™๐˜ข๐˜บ๐˜บ๐˜ข๐˜ฏ๐Ÿ’ซ
- 1
Ok!
29th Mar 2022, 7:05 AM
๐Ÿ’ซ๐˜™๐˜ข๐˜บ๐˜บ๐˜ข๐˜ฏ๐Ÿ’ซ
- 3
print (18 + 7 + 3 + 1)
28th Mar 2022, 10:31 AM
๐Ÿ’ซ๐˜™๐˜ข๐˜บ๐˜บ๐˜ข๐˜ฏ๐Ÿ’ซ