freeCodeCamp/curriculum/challenges/italian/08-data-analysis-with-python/data-analysis-with-python-c.../reading-data-csv-and-txt.md

60 lines
1.1 KiB
Markdown
Raw Normal View History

---
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:
- <a href="https://github.com/krishnatray/RDP-Reading-Data-with-Python-and-Pandas" target="_blank" rel="noopener noreferrer nofollow">Notebook su GitHub</a>
- <a href="https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb" target="_blank" rel="noopener noreferrer nofollow">Come aprire Notebooks da GitHub usando Google Colab.</a>
# --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