"파이썬 딕셔너리 for루프 키-값"의 두 판 사이의 차이

 
4번째 줄: 4번째 줄:
;파이썬 딕셔너리 for루프 키-값
;파이썬 딕셔너리 for루프 키-값


<source lang='python'>
<source lang='python' run>
d = { 'id': 42, 'name': 'John Smith', 'birthyear': 2000 }
d = { 'id': 42, 'name': 'John Smith', 'birthyear': 2000 }
for key, value in d.items():
for key, value in d.items():
     print( key, ':', value )
     print( key, ':', value )
# id : 42
# name : John Smith
# birthyear : 2000
</source>
</source>



2020년 8월 18일 (화) 00:39 기준 최신판

1 개요[ | ]

Iterating Over Dictionary Key Values Corresponding to List in Python
파이썬 for루프 키 포함
파이썬 딕셔너리 for루프 키-값
d = { 'id': 42, 'name': 'John Smith', 'birthyear': 2000 }
for key, value in d.items():
    print( key, ':', value )

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}