2021-05-09
Posted 离落想AC
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-05-09相关的知识,希望对你有一定的参考价值。
urllib.request用法
# -*- coding: UTF-8 -*-
# @Time : 2021/5/9 17:33
# @Author : 李如旭
# @File :t1.py
# @Software: PyCharm
import urllib.request
response =urllib.request.urlopen("http://www.baidu.com/")
print(response.read().decode('utf-8'))
效果实现
复制html代码实现
以上是关于2021-05-09的主要内容,如果未能解决你的问题,请参考以下文章