9
TypeError: se requiere un objeto similar a bytes, no 'str' cuando se escribe en un archivo en Python3
Recientemente migré a Py 3.5. Este código funcionaba correctamente en Python 2.7: 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 Después de actualizar a 3.5, obtengo el: TypeError: a bytes-like object …
590
python
python-3.x
string
file
byte