[자료구조]
- 여러개의 데이터가 묶여있는 자료형을 컨테이너 자료형이라 하고, 이러한 컨테이너 자료형의 데이터 구조를 자료구조라고 한다.
- 파이썬에는 대표적으로 리스트, 튜플, 딕셔너리, 집합 이 있다.
student1 = '홍길동'
student2 = '박찬호'
student3 = '이용규'
student4 = '박승철'
student5 = '김지은'
students = ['홍길동','박찬호','이용규','박승철','김지은']
print(students)
print(type(students))
students = ('홍길동','박찬호','이용규','박승철','김지은') # 튜플에 한번 정해진 데이터는 변경할 수 없다.
print(students)
print(type(students))
scores = {'kor':95, 'eng':80, 'mat':100}
print(scores)
print(type(scores))
allsales = {100,200,500}
print(allsales)
print(type(allsales))
'''
['홍길동', '박찬호', '이용규', '박승철', '김지은']
<class 'list'>
('홍길동', '박찬호', '이용규', '박승철', '김지은')
<class 'tuple'>
{'kor': 95, 'eng': 80, 'mat': 100}
<class 'dict'>
{200, 100, 500}
<class 'set'>
'''
'자료구조' 카테고리의 다른 글
[자료구조] 리스트 연결, extend(), 번외 count() (0) | 2022.05.11 |
---|---|
[자료구조] 리스트 pop(), remove(), del, clear() (0) | 2022.05.10 |
[자료구조] 리스트 append(), insert() (0) | 2022.05.10 |
[자료구조] enumerate() 함수 (0) | 2022.05.10 |
[자료구조] 이중 리스트 일때, 내부 리스트 조회 (0) | 2022.05.10 |