■ 함수에서 ** 기호를 사용해 가변 인자를 딕셔너리 형태로 전달하는 방법을 보여준다.
▶ 예제 코드 1 (PY)
1 2 3 4 5 6 7 8 9 10 |
def test(**argumentDictionary): print(argumentDictionary) test(key1 = "value1", key2 = "value2", key3 = "value3") """ {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'} """ |
▶ 예제 코드 2 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 |
def test(**argumentDictionary): print(argumentDictionary) dictionary = {"key1" : "value1", "key2" : "value2", "key3" : "value3"} test(**dictionary) """ {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'} """ |