Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用“getHTML”从网站接收到的字符串并将其转换为字符串中所有单词的列表,但我的代码似乎不配合。我究竟做错了什么?
from hmc_urllib import getHTML def TextClouds(): url = input('HTML, please:') x = getHTML(url) return x.split()