Python: Calculate the sum of the positive and negative numbers of a given list of numbers using lambda function
23. Positive Negative Sum Lambda
Write a Python program to calculate the sum of the positive and negative numbers of a given list of numbers using the lambda function.
Sample Solution:
Python Code :
Sample Output:
Original list: [2, 4, -6, -9, 11, -12, 14, -5, 17] Sum of the negative numbers: -32 Sum of the positive numbers: 48
For more Practice: Solve these Related Problems:
- Write a Python program to calculate the product of positive and negative numbers separately using lambda.
- Write a Python program to count the number of positive and negative numbers in a list using lambda.
- Write a Python program to compute the average of positive and negative numbers in a list using lambda.
- Write a Python program to find the maximum positive number and the minimum negative number in a list using lambda.
Go to:
Previous: Write a Python program that sum the length of the names of a given list of names after removing the names that starts with an lowercase letter. Use lambda function.
Next: Write a Python program to find numbers within a given range where every number is divisible by every digit it contains.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.