gpt4 book ai didi

python - 错误 : a bytes-like object is required, 不是 'str'

转载 作者:行者123 更新时间:2023-12-05 08:54:49 26 4
gpt4 key购买 nike

我正在研究我在网上找到的一些代码。它在 Python 2 中。当我在 Python 3 中运行代码时,它给了我这个错误:需要一个类似字节的对象,而不是“str”。有人可以帮我解决这个问题吗?非常感谢

import urllib.request as ur 
text =
ur.urlopen('https://raw.githubusercontent.com/ryanmcdermott/trump-
speeches/master/speeches.txt')
words = []
for line in text:
line = line.decode('utf-8-sig', errors='ignore')
line = line.encode('ascii', errors='ignore')
line = line.replace('\r', ' ').replace('\n', ' ')
new_words = line.split(' ')
new_words = [word for word in new_words if word not in ['', ' ']]
words = words + new_words

print('Corpus size: {0} words.'.format(len(words)))

最佳答案

只需将 line 转换为 str 错误就会消失

line = line.replace('\r', ' ').replace('\n', ' ')

 line = str(line).replace('\r', ' ').replace('\n', ' ')

关于python - 错误 : a bytes-like object is required, 不是 'str',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48374737/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com