不敬语查询
|
|
内置函数
利用代码访问网站
不敬语查询网站 可能需要进行科学上网,
利用这个网站后缀,进行查询是否存在不文明的字12345678910111213import urllibdef read_text(): quotes = open("E:\ButterKnife.txt") contents_of_file=quotes.read() print(contents_of_file) quotes.close() check_profanity(contents_of_file)def check_profanity(check_text): connection=urllib.urlopen("http://www.wdylike.appspot.com/?q="+check_text) output=connection.read() print(output) connection.close()read_text()