import pandas as pd
df = pd.read_csv("file path.csv")
import pandas as pd
# Read file and set row number(s) to use as the column name(s)
df = pd.read_csv('file.csv', header = 0)
# Display DataFrame
print(df)
df = pd.read_csv("filename.csv", encoding="some_encoding")
you should be in the same dir as .py file
df = pd.read_csv('your_file_name.csv')
pd.read_csv('data.csv') # doctest: +SKIP
df = pd.read_csv("name.csv")
pandas.read_csv("file.csv")