9
TypeError: um objeto semelhante a bytes é necessário, não 'str' ao gravar em um arquivo em Python3
Eu mudei recentemente para o Py 3.5. Este código estava funcionando corretamente no 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 Depois de atualizar para o 3.5, estou recebendo …
590
python
python-3.x
string
file
byte