From 8d3e745647675c1234a8a0d88d0592d934f5afad Mon Sep 17 00:00:00 2001 From: 622ff545dfef6c4fdb84ccec <622ff545dfef6c4fdb84ccec@devide> Date: Thu, 4 May 2023 05:08:00 +0000 Subject: [PATCH] Thu May 4 05:08:00 UTC 2023 inscode --- main.py | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 4c0c135..47ed94f 100644 --- a/main.py +++ b/main.py @@ -1 +1,20 @@ -print('欢迎来到 InsCode') \ No newline at end of file + +# 使用urllib来获取百度首页的源码 +import urllib.request + + +# (1)定义一个url 就是你要访问的地址 +url = 'http://www.baidu.com' + +# (2)模拟浏览器向服务器发送请求 response响应 +response = urllib.request.urlopen(url) + +# (3)获取响应中的页面的源码 content 内容的意思 +# read方法 返回的是字节形式的二进制数据 +# 我们要将二进制的数据转换为字符串 +# 二进制--》字符串 解码 decode('编码的格式') +content = response.read().decode('utf-8') + +# (4)打印数据 +print(content) + -- GitLab