Python判断网页中是否含有指定文字
(2019-10-11 23:18:09)
标签:
python |
# 判断网页中是否含有指定文字
import urllib.request
url = 'http://movie.douban.com/top250?format=text'
test = urllib.request.urlopen(url).read()
print(test)
if '豆瓣网' in test.decode():
print("1包含指定文字。")
else:
print("2不包含指定文字。")
---------------------------------------------------------
import requests
url = "http://movie.douban.com/top250?format=text"
html = requests.get(url).text
print(html)
str = input("请输入要查找的字符串:")
if str in html:
print("你找到了字符串:{}".format(str))
else:
print("你要找的字符串没有出现在该网站!")
前一篇:Python实现模拟浏览器登录
后一篇:Python获取当前页面url