"Python 딕셔너리 리스트"의 두 판 사이의 차이

19번째 줄: 19번째 줄:
* [[Python 딕셔너리]]
* [[Python 딕셔너리]]
* [[Python 딕셔너리 리스트 정렬]]
* [[Python 딕셔너리 리스트 정렬]]
* [[딕셔너리 리스트]]


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

2020년 7월 11일 (토) 19:04 판

1 개요

파이썬 Dictonary List
Python 딕셔너리 리스트
orders = [
  {'id': 1, 'name': 'Ashley', 'date': '2020-05-20'},
  {'id': 2, 'name': 'Peter' , 'date': '2020-05-20'},
  {'id': 3, 'name': 'Ashley', 'date': '2020-05-05'},
  {'id': 4, 'name': 'John'  , 'date': '2020-05-05'},
  {'id': 5, 'name': 'Peter' , 'date': '2020-05-05'},
]
from pprint import pprint
pprint( orders )

2 같이 보기

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