用python查看网页代码的方法:

1、使用“import”导入requests包

import requests

2、使用requests包的get()函数通过网页链接获取网页的源码,然后使用print()语句输出就可以了

python如何查看网页代码

执行结果如下:

python如何查看网页代码

实例扩展:

Python获取网页html代码

获取网页html代码:

import requests
res = requests.get('https://www.jb51.net/更换成你的网页.html')
res.encoding = 'utf-8'
print(res.text)

运行结果:

python如何查看网页代码

标签:
python,网页代码

免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com

评论“python如何查看网页代码”

暂无“python如何查看网页代码”评论...