본문 바로가기

Python

[Python] 딕셔너리(Dictionary) 자료형

Key - Value 구조의 자료형

 

dic[key] = value 모양으로 key-value 자료를 dictionary 에 저장

 

dic[key] or dic.get(key) 로 value 사용

 

# {} --> dictionary 의미
dic = {} 

#dic[key] = value
dic[1] = 43
dic['name'] = 'python'

dic[key]
dic.get(key)
반응형

'Python' 카테고리의 다른 글

[Python] 반복문 loop (while, for, break, continue)  (0) 2022.01.19
[Python] 조건문 (if / elif / else)  (0) 2022.01.19
[Python] 튜플(Tuple) 자료형  (0) 2022.01.18
[Python] 리스트(List) 자료형  (0) 2022.01.13
[Python] 문자열 (String)  (0) 2022.01.12