摘要: 1、如何发送get请求 import urllib.request response = urllib.request.urlopen('http://www.baidu.com') print(response.read().decode('utf-8')) 2、如何发送post请求 import 阅读全文
posted @ 2020-10-18 09:58 程序不程序 阅读(113) 评论(0) 推荐(0) 编辑