파이썬 dictionary 자료형의 key값에 value값을 정의하는 방법이다.
mDict = {'key':'value'} #정의 mDict['key'] = 'value2' #수정 #결과 mDict = {'key':'value2'}