Python에서 함수 인수로 목록을 확장하는 방법 이 질문에는 이미 다음과 같은 답이 있습니다. *args 및 **kwargs (11개 답변) 마감됨9년 전에. 함수 호출의 인수로 목록을 확장할 수 있는 구문이 있습니까? 예: # 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() ) 그것..