data= pd.read_csv("Filtered Data.csv", sep='', encoding='latin-1')
显示错误:ValueError: only single character unicode strings can be converted to Py_UCS4, got length 0
如何摆脱这个错误?
答案 0 :(得分:2)
由于sep=''
错误而丢失了空格。您可以使用sep=' '
。
Sep采用字符串参数(according to Panda documentation)。所以它抱怨空字符串。
您也可以使用delim_whitespace
,请参阅this question。