딕셔너리 자료형
-
Python Programming Basic - 7. 딕셔너리 함수Python/Python Basic Lesson 2020. 3. 2. 20:38
items() : 사전의 키, 값 모두 return dic = {'a':1,'b':2,'c':3} print(dic.items()) # for문을 이용한 key, value 반복 추출 for key, value in dic.items(): print(key, value) a 1 b 2 c 3 key() : 사전의 키 return dic = {'a':1,'b':2,'c':3} print(dic.keys()) dict_keys(['a', 'b', 'c']) # for문을 활용한 key for key in dic.keys(): print(key) a b c values() : 사전의 값 return dic = {'a':1,'b':2,'c':3} print(dic.values()) dict_values([1, ..