Boostcamp/U1
2022. 5. 25.
[1-3] python 기초 문법 (2)
개요 python data structure pythonic codes 1. python data structure 파이썬 기본 데이터 구조 스택 stack , 큐 queue 튜플 tuple , 집합 set 사전 dictionary Collection모듈 1.1 스택 stack LIFO (Last In First Out) : 나중에 넣은 데이터를 먼저 반환하도록 설계된 메모리 구조 append() = push : 데이터 입력 pop() : 데이터 출력 a = [1,2,3,4,5] a.append(10) a --> [1,2,3,4,5,10] a.pop() --> 10 a --> [1,2,3,4,5] 1.2 큐 queue First In First Out(FIFO) : 먼저 넣은 데이터 먼저 반환 stack..