How can I use a Python list (e.g. params = ['a',3.4,None]) as parameters to a function, e.g.:
params = ['a',3.4,None]
def some_func(a_char,a_float,a_something): # do stuff
You can do this using the splat operator:
some_func(*params)
This causes the function to receive each list item as a separate parameter. There's a description here: http://docs.python.org/tutorial/controlflow.html#unpacking-argument-lists
2.1m questions
2.1m answers
60 comments
57.0k users