[Python] dict & defaultdict, OrderedDict 2 분 소요 키가 존재할 때와 존재하지 않을 때 >>> d = {'red':1, 'white':2} >>> d['red'] = 2 >>> d {'red':2, 'white':2} >>> d['blue'] = 3 >>&g...