[python] 주로 사용하는 파이썬 기본 라이브러리


[python] 주로 사용하는 파이썬 기본 라이브러리

import collections import heapq import functools import itertiools import re import sys import math import bisect form typing import * bold표시한 것이 안써본 것 import heapq https://jungeun960.tistory.com/146 import functool https://docs.python.org/ko/3/library/functools.html import re *regex (regular expression): 정규표현식 정규 표현 처리를 하기 위해서 사용, 문자열의 추출이나 치환, 분할 등이 가능 (사용하면 편할 것 같다) ex) re.findall을 통해서 정수만 추출해 올 수 있음 (혁명..) https://brownbears.tistory.com/506 https://engineer-mole.tistory.com/189 import bisect 목록 정렬을 유지하기 위해서 요..........



원문링크 : [python] 주로 사용하는 파이썬 기본 라이브러리