티스토리 뷰
다른사람들이 작성한 python 코드를 보다보면
*args, **kwargs 를 심심치 않게 본다.
그냥 막연하게 "어떤 파라미터를 몇개를 받을지 모르는 경우 사용한다" 라고 알고 있었지만
자세히 설명한 예 가 있어서 소개한다.
*args
- 파라미터를 몇개를 받을지 모르는 경우 사용한다. args 는 튜플 형태로 전달된다.
예)
?
1 2 3 4 5 6 7 8 9 10 11 | def print_param(*args):
print args
for p in args:
print p
print_param('a', 'b', 'c', 'd')
#('a', 'b', 'c', 'd') #a #b #c #d |
**kwargs
- 파라미터 명을 같이 보낼 수 있다. kwargs는 딕셔너리 형태로 전달된다.
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | def print_param2(**kwargs):
print kwargs
print kwargs.keys()
print kwargs.values()
for name, value in kwargs.items():
print "%s : %s" % (name, value)
print_param2(first = 'a', second = 'b', third = 'c', fourth = 'd')
#{'second': 'b', 'fourth': 'd', 'third': 'c', 'first': 'a'} #['second', 'fourth', 'third', 'first'] #['b', 'd', 'c', 'a'] #second : b #fourth : d #third : c #first : a |
그러면 두개를 같이 쓰는 경우는??
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | def print_param3(*args, **kwargs):
print args
print kwargs
print_param3('a', 'b')
#('a', 'b') #{} print_param3(third = 'c', fourth = 'd')
#() #{'fourth': 'd', 'third': 'c'} print_param3('a', 'b', third = 'c', fourth = 'd')
#('a', 'b') #{'fourth': 'd', 'third': 'c'} |
응용 해 보자
?
1 2 3 4 5 6 7 8 9 10 | def print_param4(a, b, c):
print a, b, c
p = ['a', 'b', 'c']
print_param4(*p) #a b c p2 = {'c' : '1', 'a' : '2', 'b' : '3'}
print_param4(**p2) #2 3 1 |
'BackEnd > Python' 카테고리의 다른 글
[퍼옴] @staticmethod, @classmethod 차이 (0) | 2018.02.01 |
---|---|
python에서 private로 처리 하고 싶다면? @Property (0) | 2018.01.31 |
Python 메모리 (0) | 2017.12.15 |
[퍼옴] [파이썬으로배우는알고리즘트레이딩] 클래스 변수, 인스턴스 변수 관계 (0) | 2017.09.16 |
[퍼옴] [파이썬으로배우는알고리즘트레이딩] 클래스 & 네임스페이스 & 인스턴스 관계 (0) | 2017.09.16 |
댓글
공지사항
최근에 올라온 글
링크
TAG
- tensorflow
- AWS
- javascript
- AI
- executor
- spark
- mysql
- 파이썬
- Configuration
- Maven
- 텐서플로우
- BigData
- memory
- ML
- serverless
- spring
- 점프투파이썬
- python
- NIO
- 중앙정보처리학원
- Error
- Docker
- API
- mybatis
- 모두의딥러닝
- web
- TDD
- 머신러닝
- Java
- Gradle
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함