- 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)
14 Respostas
+ 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
+ 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))
+ 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
+ 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
+ 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))
+ 1
Can you please vote my answers if it is correct
0
What's your try?
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..
0
It is very easy simple calculation .
Wins * score for wins + draws * score for drow
Total = 18*3+7*1 = 61
- 1
uhh anybody pls help
- 1
Ty
- 1
Tyyy
- 1
Ok!
- 3
print (18 + 7 + 3 + 1)