在下面的代码中,我无法弄清楚 str(word.strip(),encoding =" utf-8")的作用。我尝试谷歌但无济于事。请求别人帮助我:
for word in urlopen(WORD_URL).readlines():
WORDS.append(str(word.strip(), encoding = "utf-8"))
答案 0 :(得分:0)
我相信这会将word.strip()
的结果转换为字符串类型,并专门将此字符串的编码设置为' UTF-8'。您可以在此处找到str()
的更多详细信息:https://docs.python.org/3.5/library/string.html。
答案 1 :(得分:0)