0
Write a program that will multiply the sum of 5 and 6 by 57.3 and output the result
Can anyone help me with this math problem
3 odpowiedzi
+ 4
* calculate the sum of 5 and 6
* multiply by 57.3
* use print() for output
+ 2
Maybe this helps you
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2271/?ref=app
+ 1
Just like Lisa said, it should look something like this.
res = 5+6
res *= 57.3
print (res)