如何使用python将Binary(application / octet-stream)转换为文本文件

时间:2019-02-18 05:18:13

标签: python

我在Linux中有二进制文件(应用程序/八位字节流),我想将其读取为普通文本文件,然后使用python grep /捕获一些行。我该怎么办?因为我找不到适合自己的解决方案。

我的代码是

f=open(file_path_log,"rb")
for lines in f:
    lines = lines.encode("utf-8")
    lines = lines.strip()
    #print lines
    if "Max" in lines:
        print "in"
        print text , 'Text' 

0 个答案:

没有答案