파이썬 .items()

Jmnote (토론 | 기여)님의 2019년 12월 22일 (일) 21:45 판 (→‎개요)

1 개요

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

2 같이 보기

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