How to create a function with arbitrary number of parameters in Python

3 Answers

0 votes
def function(n, *values):
    print(len(values))
    return n + sum(values)


print(function(1, 4, 5, 6))


'''
run:

3
16

'''

 



answered Dec 15, 2017 by avibootz
0 votes
def function(n, *values):
    print(len(values))
    return n + sum(values)


print(function(1))


'''
run:

0
1

'''

 



answered Dec 15, 2017 by avibootz
0 votes
def function(n, *values):
    print(len(values))
    return n + sum(values)

print(function(3.14, 1.1, 2.2))


'''
run:

2
6.44

'''

 



answered Dec 15, 2017 by avibootz
...