mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-16 00:07:42 -05:00
1.2 KiB
1.2 KiB
id, title, challengeType, videoId, bilibiliIds, dashedName
| id | title | challengeType | videoId | bilibiliIds | dashedName | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 5e9a093a74c4063ca6f7c162 | CSV- und TXT Dateien einlesen | 11 | ViGEv0zOzUk |
|
reading-data-csv-and-txt |
--description--
Anstatt, wie in dem Video gezeigt, notebooks.ai zu verwenden, kannst du auch Google Colab verwenden.
Weitere Ressourcen:
--question--
--text--
Wie würdest du die CSV-Datei data.csv importieren und mit dem Pandas-Modul in einem DataFrame speichern?
--answers--
import pandas as pd
df = pd.csv("data.csv")
import pandas as pd
df = pd.read_csv("data.csv")
import pandas as pd
pd.read_csv("data.csv")
import pandas as pd
df = pd.csv_reader("data.csv")
--video-solution--
2