[파이썬/Python] 파이썬 Dictionary for문 사용법 #파이썬 dict key, value 가져오기 #파이썬 딕셔너리 items #파이썬 dict key, value 쌍 가져오기 #Dictionary 파이썬의 Dictionary 사용 시, 키와 값을 동시에 가져오고 싶을 때 있잖아요. 그럴 때, 아래 코드가 참고가 될꺼에요. 아래는 for문 사용 시, dict의 key, value를 동시에 가져오는 예제 코드입니다. dic = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5} for key, value in dic.items(): print('{}: {}'.format(key, value)) 결과 값 one: 1 two: 2 three: 3 f..