-
python dictionary for 반복문 key value 처리
기본적인 방법
반복문으로 얻으면 key를 얻어 온다.
key로 원하는 value를 찾으면 된다.
d1 = { "a" : 11, "b" : 22, "c" : 33 } for key in d1: print(key, dictionary[key]) # Output # a 11 # b 22 # c 33
Key, Value쌍의 반복자를 얻어 탐색
d1 = { "a" : 11, "b" : 22, "c" : 33 } for key, value in d1.items() : print(key, value) # Output # a 11 # b 22 # c 33
'Python' 카테고리의 다른 글
파이썬 object(개체) 비교(is, == 처리) (0) 2023.09.03 PyGame 소리 sound file 재생(wav, mp3 등) (0) 2023.08.17 오류해결 - module compiled against API version 0xf but this version of numpy is 0xd (0) 2023.08.13 파이썬 파일 경로 슬러쉬 (0) 2023.07.12 UUID(GUID) 생성 (0) 2023.07.06 Python Streamlit 시각화(웹서비스) (0) 2023.02.05 Python Re 정규식 예제1 (0) 2023.01.15 Python bs4.BeautifulSoup (0) 2022.12.16