Saved Bookmarks
| 1. |
Plzz guys help me....write a program to find out the sum of the given numbers.2,4,6,8 |
|
Answer» Explanation: python program to find the sum of given numbers NUMS = [int(n) for n in INPUT("Enter the numbers: ").split(" ")] print("The numbers are: ", nums) print("The sum of given numbers = ", sum(nums)) Output: Enter the numbers: 10 20 30 40 The numbers are: [10, 20, 30, 40] The sum of given numbers = 100 |
|