读取最后50个字节的python

时间:2015-12-15 10:06:15

标签: python

我想从文件中读取最后50个字节。

我使用以下代码读取前50个字节。

def read_file(filepath):
    open_file = open(filepath)
    return "".join("{:02x}".format(int(ord(c))) for c in open_file.read(50))

0 个答案:

没有答案