Python | Add numbers using lambda

Example 1:

a = int(input('Enter 1st number: '))
b = int(input('Enter 2nd number: '))
c = int(input('Enter 3rd number: '))

output = lambda a,b,c: a + b + c

print('Addition result is: ', output(a, b, c))

Output:

Enter 1st number: 5
Enter 2nd number: 6
Enter 3rd number: 7
Addition result is: 18

Example 2:

numbers = [int(i) for i in input('Enter numbers: ').split()]
output = lambda *args: sum([*args])
print(output(*numbers))

Output:

Enter numbers: 5 4 3 2 1
15

Also Read:

Share:

Author: Harry

Hello friends, thanks for visiting my website. I am a Python programmer. I, with some other members, write blogs on this website based on Python and Programming. We are still in the growing phase that's why the website design is not so good and there are many other things that need to be corrected in this website but I hope all these things will happen someday. But, till then we will not stop ourselves from uploading more amazing articles. If you want to join us or have any queries, you can mail me at admin@copyassignment.com Thank you