标签: 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))