"파이썬 .items()"의 두 판 사이의 차이

(새 문서: ==개요== ;Python .items() ;파이썬 .items() <source lang='console'> d = {'a':1, 'b':2} print( d.items() ) # dict_items([('a', 1), ('b', 2)]) </source> <source lang='console'> mem...)
 
잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(다른 사용자 한 명의 중간 판 6개는 보이지 않습니다)
3번째 줄: 3번째 줄:
;파이썬 .items()
;파이썬 .items()


<source lang='console'>
<syntaxhighlight lang='python' notebook>
d = {'a':1, 'b':2}
d = {'a':1, 'b':2}
print( d.items() )
print( d.items() )
# dict_items([('a', 1), ('b', 2)])
</syntaxhighlight>
</source>
<syntaxhighlight lang='python' notebook>
<source lang='console'>
print( list(d.items()) )
</syntaxhighlight>
<syntaxhighlight lang='python' notebook>
member = { 'ID' : 102, 'Name' : 'YONEZAWA Akinori', 'Address' : 'Naha, Okinawa' }
member = { 'ID' : 102, 'Name' : 'YONEZAWA Akinori', 'Address' : 'Naha, Okinawa' }
print( member.items() )  
print( member.items() )  
# dict_items([('ID', 102), ('Name', 'YONEZAWA Akinori'), ('Address', 'Naha, Okinawa')])
</syntaxhighlight>
</source>
<syntaxhighlight lang='python' notebook>
print( list(member.items()) )  
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[파이썬 .keys()]]
* [[파이썬 .keys()]]
* [[파이썬 .items()]]
* [[파이썬 .values()]]
* [[파이썬 .values()]]
* [[파이썬 딕셔너리 for루프 키-값]]


[[분류: Python 딕셔너리]]
[[분류: Python 딕셔너리]]

2021년 4월 10일 (토) 02:45 기준 최신판

1 개요[ | ]

Python .items()
파이썬 .items()
d = {'a':1, 'b':2}
print( d.items() )
print( list(d.items()) )
member = { 'ID' : 102, 'Name' : 'YONEZAWA Akinori', 'Address' : 'Naha, Okinawa' }
print( member.items() )
print( list(member.items()) )

2 같이 보기[ | ]

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