UnicodeDecodeError when reading CSV file in Pandas with Python

后端 未结 21 2537
野趣味
野趣味 2020-11-22 04:27

I\'m running a program which is processing 30,000 similar files. A random number of them are stopping and producing this error...

File "C:\\Importer\\src         


        
21条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 04:58

    Try specifying the engine='python'. It worked for me but I'm still trying to figure out why.

    df = pd.read_csv(input_file_path,...engine='python')
    

提交回复
热议问题