python 发送请求的例子

示例:下面是用 Python 发送 HTTP 请求的例子:import requestsurl = 'http://www.example.com/'response = requests.get(url)print(response.text)

猜你喜欢

转载自blog.csdn.net/weixin_42588672/article/details/129537024