개발 => 복습 후 재정리 대기/Python
[Python][문법] list + dictionary
people = [
{'name' : 'bob', 'age' : 27},
{'name' : 'jang', 'age' : 34}
]
print(people[1]['age']) # 34
people = [
{'name': 'bob', 'age': 20, 'score':{'math':90,'science':70}},
{'name': 'carry', 'age': 38, 'score':{'math':40,'science':72}},
{'name': 'smith', 'age': 28, 'score':{'math':80,'science':90}},
{'name': 'john', 'age': 34, 'score':{'math':75,'science':100}}
]
print(people[2]['score']['science']) # 90
people = [
{'name' : 'bob', 'age' : 27},
{'name' : 'jang', 'age' : 34}
]
print(people[1]['age']) # 34
people = [
{'name': 'bob', 'age': 20, 'score':{'math':90,'science':70}},
{'name': 'carry', 'age': 38, 'score':{'math':40,'science':72}},
{'name': 'smith', 'age': 28, 'score':{'math':80,'science':90}},
{'name': 'john', 'age': 34, 'score':{'math':75,'science':100}}
]
print(people[2]['score']['science']) # 90
'개발 => 복습 후 재정리 대기 > Python' 카테고리의 다른 글
[Python][문법] 반복문 for, enumerate, break (0) | 2021.05.05 |
---|---|
[Python][문법] 조건문 if (0) | 2021.05.05 |
[Python][문법] Dictionary (0) | 2021.05.05 |
[Python][문법] list (0) | 2021.05.05 |
[Python] [문법] 문자열 길이, 자르기, 쪼개기 (0) | 2021.05.05 |
댓글