通过Python pandas读取文件时附加Null Byte

时间:2017-08-23 12:08:06

标签: python-2.7 pandas csv

我创建了一个脚本,它将为您提供两个文件之间的匹配行。发布,我将输出文件返回到一个函数,该函数将使用该文件作为输入来使用pandas创建pivot。

但不知何故,似乎有些错误,下面是代码片段

def CreateSummary(file):
    out_file = file
    file_df = pd.read_csv(out_file) ## This function is appending NULL Bytes at 
                                      the end of the file
    #print file_df.head(2)

上面的代码给出了错误

   ValueError: No columns to parse from file

尝试了另一种方法:

  file_df = pd.read_csv(out_file,delim_whitespace=True,engine='python')

  ##This gives me error as
      _csv.Error: line contains NULL byte

非常感谢任何建议和批评。

0 个答案:

没有答案