I'd like to write a python function which adds all its arguments, using + operator. Number of arguments are not specified:
def my_func(*args):
return arg1 + arg2 + arg3 + ...
How do I do it?
Best Regards
|
Just use the sum built-in function
Edit: I don't know why you want to avoid sum, but here we go:
Instead of the Edit2: I had a look at your other questions, and it seems your problem is using |
|||||||||||||||||
|
|
How about this:
If you don't want to use the
|
|||||||||||
|
|
If you definitely won't be using
or |
|||
|
|
*argsthenargsis a list of all arguments passed. – Joachim Pileborg Jul 17 '12 at 10:07sum? That's precisely what it does. – David Cain Jul 17 '12 at 10:23