python의 dict
mapping objectdict는 다양한 방식으로 정의할 수 있다. xxxxxxxxxx>>> a = dict(one=1, two=2, three=3)>>> b = {'one': 1, 'two': 2, 'three': 3}>>> c = dict(zip(['one', 'two', 'three'], [1, 2, 3]))>>> d = dict([('one', 1), ('two', 2), ('three', 3)])>>> e = dict({'three': 3, 'two': 2, 'one': 1})>>> a == b == c == d == eTruedict은 mapping 객체 중 하나에 해당하며 mapping객체의 정의는 아래와 같다. 임의의 키 검색을 지원하고 Mapping 또는 MutableMapping추상클..
https://taiyoru.tistory.com/entry/python의-dict