简体   繁体   中英

trying to import a excel csv (?!) file with panda

I am new to Python/Panda and I am trying to import the following file in Jupyter notebook via pd.read_

Initial file lines:初始文件行

either pd.read_excel or pd.read_csv returned an error. eliminating the first row allowed me to read the file but all csv data were not separated.

could you share the line of code you have used so far to import the data? Maybe try this one here:

data = pd.read_csv(filename, delimiter=',')

It is always easier for people to help you if you share the relevant code accompanied by the error you are getting.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM