Computer Science, asked by PuneetSahu9333, 8 months ago

Write a python statement to display the sum of 16,5.0,44.0

Answers

Answered by bktbunu
1

Explanation:

print(sum([16,5.0,44.0]))

Similar questions