import heapq
x = 5
heap = []
heapq.heappush(heap, x)
heapq.heappop(heap)
참조
'파이썬' 카테고리의 다른 글
에러와 예외 처리 (0) | 2022.03.14 |
---|---|
데이터 구조: string, list, set, dict (0) | 2022.03.14 |
언팩(unpack)과 딕셔너리 (0) | 2022.03.14 |
패키지와 모듈 (0) | 2022.03.14 |
객체 지향 프로그래밍 (OOP) (0) | 2022.03.14 |