UnicodeDecodeError, invalid continuation byte

前端 未结 10 2135
忘掉有多难
忘掉有多难 2020-11-22 08:25

Why is the below item failing? Why does it succeed with "latin-1" codec?

o = "a test of \\xe9 char" #I want this to remain a string as thi         


        
10条回答
  •  深忆病人
    2020-11-22 08:56

    Use this, If it shows the error of UTF-8

    pd.read_csv('File_name.csv',encoding='latin-1')
    

提交回复
热议问题