0
Can you help me on some math?
Write a program that will multiply the sum of 5 and 6 by 57.3 and output the result. Here is my attempt: print(30*57.3) (30*57.3)
3 ответов
+ 1
def mult():
res = (6+5)*57.3
print(res)
mult()
+ 3
sum mean +
multiply means *
+ 1
Try this
print((5 + 6)*57.3)