Saved Bookmarks
| 1. |
Write a program to find the sum of all the elements of a tuple by using built-in program. |
|
Answer» ER: sum((1,2,3,4,5)) Or T=1,2,3,4,5 sum(t) Or print(sum(LIST(map(int,INPUT("Enter numbers separated by SPACE: ").split(" "))))) Please mark this answer as brainliest |
|