标签: python-3.x hex readfile readline
如何在Python3中逐行读取文件,但将十六进制字符串定义为行分隔符?
在Ruby中,我是这样进行的:
File.foreach("input.dat", sep="\x17\x05", encoding: 'ASCII-8BIT') do |line| puts line #prints line end
Python中是否有等效或类似的方法?
感谢您的帮助。