Ok, question stupide de python: Existe-t-il une syntaxe qui vous permet de développer une liste dans les arguments d'un appel de fonction?
Exemple:
# trivial example function, not meant to do anything useful.
def foo(x,y,z):
return "%d, %d, %d" %(x,y,z)
# List of values that I want to pass into foo
values = [1,2,3]
#I want to do something like this, and get the result "1, 2, 3":
foo( values.howDoYouExpandMe() )