我最近迁移到了Python3.5。此代码在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

但是在3.5中,在tmp:contain行中的if“some pattern”上,我得到一个错误,该错误表示:

TypeError: a bytes-like object is required, not 'str'

我无法在in的任一侧使用.dedecode()解决问题,也无法使用

    if tmp.find('some-pattern') != -1: continue

有什么问题,我该如何解决?


当前回答

使用encodes()函数以及单引号中给出的硬编码字符串值。

例子:

file.write(answers[i] + '\n'.encode())

Or

line.split(' +++$+++ '.encode())

其他回答

您以二进制模式打开了文件:

with open(fname, 'rb') as f:

这意味着从文件中读取的所有数据都将作为字节对象返回,而不是str。然后不能在包含测试中使用字符串:

if 'some-pattern' in tmp: continue

您必须使用一个字节对象来测试tmp:

if b'some-pattern' in tmp: continue

或将“rb”模式替换为“r”,将文件作为文本文件打开。

对于这个小示例,在'获取http://www.py4inf.com/code/romeo.txtHTTP/1.0\n \n'解决了我的问题:

import socket

mysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
mysock.connect(('www.py4inf.com', 80))
mysock.send(b'GET http://www.py4inf.com/code/romeo.txt HTTP/1.0\n\n')

while True:
    data = mysock.recv(512)
    if (len(data) < 1):
        break
    print (data);

mysock.close()

“b”字符在字符串文本前面做什么?

您以二进制模式打开了文件:

以下代码将抛出a TypeError:需要类似字节的对象,而不是“str”。

for line in lines:
    print(type(line))# <class 'bytes'>
    if 'substring' in line:
       print('success')

以下代码将起作用-您必须使用decode()函数:

for line in lines:
    line = line.decode()
    print(type(line))# <class 'str'>
    if 'substring' in line:
       print('success')

使用encodes()函数以及单引号中给出的硬编码字符串值。

例子:

file.write(answers[i] + '\n'.encode())

Or

line.split(' +++$+++ '.encode())

尝试以文本形式打开文件:

with open(fname, 'rt') as f:
    lines = [x.strip() for x in f.readlines()]

此外,在官方页面上还有Python 3.x的链接:io-处理流的核心工具。

这就是open函数:open

如果您确实试图将其作为二进制文件处理,那么请考虑对字符串进行编码。