import pandas as pd
df = pd.read_csv('E:/demographic-data.csv')
I'm try to read a csv file using pandas. But end up getting the below error. How can I solve this?
import pandas as pd
df = pd.read_csv('E:/demographic-data.csv')
I'm try to read a csv file using pandas. But end up getting the below error. How can I solve this?
Try:
df = pd.read_csv('E://demographic-data.csv')