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

3번째 줄: 3번째 줄:
;파이썬 .items()
;파이썬 .items()


<source lang='python'>
<source lang='python' run>
d = {'a':1, 'b':2}
d = {'a':1, 'b':2}
print( d.items() )
print( d.items() )
# dict_items([('a', 1), ('b', 2)])
</source>
</source>
<source lang='python'>
<source lang='python' run>
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')])
</source>
</source>



2021년 4월 10일 (토) 02:40 판

1 개요

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

2 같이 보기

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