python如何获取整个页面?

python

1、Python中获取整个页面的代码:

import requests

res = requests.get('https://blog.csdn.net/yirexiao/article/details/79092355')

res.encoding = 'utf-8'

print(res.text)

2、运行结果

以上是 python如何获取整个页面? 的全部内容, 来源链接: utcz.com/z/527927.html

回到顶部