Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

두 개의 사전을 하나로 연결하는 Python 프로그램

<시간/>

두 개의 사전을 하나의 엔터티로 연결해야 하는 경우 '업데이트' 방법을 사용할 수 있습니다.

사전은 '키-값' 쌍입니다.

아래는 동일한 데모입니다 -

my_dict_1 = {'J':12,'W':22}
my_dict_2 = {'M':67}
print("The first dictionary is :")
print(my_dict_1)
print("The second dictionary is :")
print(my_dict_2)
my_dict_1.update(my_dict_2)
print("The concatenated dictionary is :")
print(my_dict_1)

출력

The first dictionary is :
{'J': 12, 'W': 22}
The second dictionary is :
{'M': 67}
The concatenated dictionary is :
{'J': 12, 'W': 22, 'M': 67}

설명

두 개의 사전이 정의되어 콘솔에 표시됩니다.

  • 'update' 메소드는 매개변수로 두 번째 사전을 전달하여 첫 번째 사전에서 호출됩니다.
  • 사전을 연결하는 데 도움이 됩니다.
  • 콘솔에 표시됩니다.