gpt4 book ai didi

python-3.x - Python 3-TypeError : a bytes-like object is required,不是 'str'

转载 作者:行者123 更新时间:2023-12-04 14:24:29 25 4
gpt4 key购买 nike

我正在从Udacity上一个类,但在尝试找出此网站的结果是否为true或False时遇到了一些问题。我用下面的代码得到TypeError。

   from urllib.request import urlopen
#check text for curse words
def check_profanity():
f = urlopen("http://www.wdylike.appspot.com/?q=shit")
output = f.read()
f.close()
print(output)
if "b'true'" in output:
print("There is a profane word in the document")

check_profanity()

输出显示 b'true',我不太确定'b'的来源。

最佳答案

在python中,默认情况下,3个字符串是unicodeb中的b'true'表示该字符串是字节字符串,而不是unicode。如果您不希望这样做,可以执行以下操作:

 from urllib.request import urlopen
#check text for curse words
def check_profanity():
with urlopen("http://www.wdylike.appspot.com/?q=shit") as f:
output = f.read().decode('utf-8')
if output:
if "true" in output:
print("There is a profane word in the document")

check_profanity()

使用 with将自动关闭 urlopen连接。

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

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