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

Python에서 사전 업데이트

<시간/>

새 항목이나 키-값 쌍을 추가하거나, 기존 항목을 수정하거나, 아래의 간단한 예에서와 같이 기존 항목을 삭제하여 사전을 업데이트할 수 있습니다. −

#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
dict['Age'] = 8; # update existing entry
dict['School'] = "DPS School"; # Add new entry
print "dict['Age']: ", dict['Age']
print "dict['School']: ", dict['School']

출력

위의 코드가 실행되면 다음과 같은 결과가 생성됩니다 -

dict['Age']: 8
dict['School']: DPS School