--- id: 5e9a093a74c4063ca6f7c162 title: Lettura di dati CSV e TXT challengeType: 11 videoId: ViGEv0zOzUk bilibiliIds: aid: 505575354 bvid: BV1tg411c7GH cid: 409020451 dashedName: reading-data-csv-and-txt --- # --description-- *Invece di usare notebooks.ai come mostrato nel video, puoi usare Google Colab.* Altre risorse: - Notebook su GitHub - Come aprire Notebooks da GitHub usando Google Colab. # --question-- ## --text-- Come faresti per importare il file CSV `data.csv` e salvarlo in un DataFrame usando il modulo Pandas? ## --answers-- ```python import pandas as pd df = pd.csv("data.csv") ``` --- ```python import pandas as pd df = pd.read_csv("data.csv") ``` --- ```python import pandas as pd pd.read_csv("data.csv") ``` --- ```python import pandas as pd df = pd.csv_reader("data.csv") ``` ## --video-solution-- 2