반응형
Python 목록 (예 : params = [ 'a', 3.4, None]
)을 함수에 대한 매개 변수로 사용하려면 어떻게해야합니까?
def some_func(a_char,a_float,a_something):
# do stuff
해결 방법
splat 연산자를 사용하여이 작업을 수행 할 수 있습니다.
some_func(*params)
참조 페이지 https://stackoverflow.com/questions/4979542
반응형
'파이썬' 카테고리의 다른 글
파이썬 sum과 같은 Python 요소 별 튜플 연산 (0) | 2020.10.12 |
---|---|
파이썬 OS Python 버전이 3.5 인 경우 pipenv Python 3.6 프로젝트를 설정하는 방법은 무엇입니까? (0) | 2020.10.12 |
파이썬 urllib.request.urlopen ()에서 응답 인코딩을 처리하는 방법 (0) | 2020.10.11 |
파이썬 Error when installing python3 packages in alpine (0) | 2020.10.11 |
파이썬 How do you directly overlay a scatter plot on top of a jpg image in matplotlib / Python? (0) | 2020.10.11 |
댓글