사용자가 사용하는 많은 기능들의 집합체를 라이브러리라 할 수 있다. pandas란 python에서 데이터 분석에 사용되는 대표적인 라이브러리이며 한번 임포트(불러오기)를 하면 라이브러리가 지원하는 모든 기능을 바로 사용할 수 있는 이점이 있다. # import하기 import pandas as pd #pd라는 짧은 이름으로 pandas라는 라이브러리를 불러오기(임포트) 하겠다 라는 뜻이다. # import 라이브러리 as 짧은이름(지정) 참고사이트 https://pandas.pydata.org/docs/getting_started/index.html Getting started — pandas 1.1.2 documentation pandas supports the integration with many ..