广东网站建设,线上推广的三种方式,网站开发设计步骤,集团公司网页设计问题
我使用以下语句时出现错误
data pd.read_excel(temp_inputc.csv, headerNone)出现错误:
Excel file format cannot be determined, you must specify an engine manually有很多人说添加engine,但接下来会出现这个错误:
File is not…
问题
我使用以下语句时出现错误
data = pd.read_excel('temp_inputc.csv', header=None)
出现错误:
Excel fileformat cannot be determined, you must specify an engine manually
有很多人说添加engine,但接下来会出现这个错误:
File isnot a zipfile
解决方法:
data = pd.read_csv('temp_inputc.csv', header=None)