Notice
Recent Posts
Recent Comments
Link
투케이2K
100. (python/파이썬) [Mac Os] : [문법] : items 사용해 딕셔너리 (dict) key , value 값 확인 본문
Python
100. (python/파이썬) [Mac Os] : [문법] : items 사용해 딕셔너리 (dict) key , value 값 확인
투케이2K 2024. 5. 8. 19:43[개발 환경 설정]
개발 툴 : VsCode
개발 언어 : python
[소스 코드]
# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
# --------------------------------------------------------------
# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. items 은 파이썬에서 딕셔너리 key , value 값을 간편하게 확인할 때 사용되는 함수입니다
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------
# [딕셔너리 변수 선언]
dict = {"name" : "TWOK", "age" : "30"}
# [items 사용 for 문 수행 key , value 확인]
for key, val in dict.items():
print("")
print("----------------------------------------")
print("key : {} / value : {}".format(key, val))
print("----------------------------------------")
print("")
# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
[결과 출력]
반응형
'Python' 카테고리의 다른 글
Comments