我正在研究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'来自何处。
答案 0 :(得分:8)
在python 3中,字符串默认为unicode
。 b
中的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
连接。