How To read csv file in python |

Опубликовано: 12 Май 2026
на канале: SortedCoding
82
2

First, we import Pandas with import pandas as pd.
Then, we load our CSV file into a DataFrame with dataset = pd.read_csv ("Data.csv")

Finally, we use print(dataset.head()) to explore the first 5 rows of our data.

That's it! With these three lines of code, we've imported Pandas, loaded our CSV file, and explored our data.

Thanks for watching, and don't forget to subscribe for more data science and programming tutorials!