TypeError:在Python 3中写入文件时需要一个类似字节的对象,而不是‘str’。
with open(fname, 'rb') as f: lines = [x.strip() for x in f.readlines()]for line in lines: tmp = line.strip().lower() if 'some-pattern' in tmp: continue # ... code
TypeError: a bytes-like object is required, not 'str'
.decode()
if tmp.find('some-pattern') != -1: continue
慕莱坞森
慕容708150
相关分类