write instructions to the interactive mode for the following: a) to display sum of 3,8.0,6*12
b) to print sum of 16,5.0,44.0
Answers
Answered by
6
print(sum([3, 8.0, 6*12]))
print(sum([16, 5.0, 44.0]))
Answered by
1
Answer:
this is my answer hope it helps you like
Attachments:
Similar questions