摘要: requests 测试demo http://httpbin.org/ 使用 pip 安装命令如下: pip install requests 安装检测 打开 cmd 窗口,输入 python 然后导入 requests 如果安装成功没有任何提示 import requests 发送不同类型 HTT 阅读全文
posted @ 2021-04-27 19:51 测试艺术家 阅读(95) 评论(0) 推荐(0) 编辑
摘要: a = 10 def test(): global a a = 5 print(a) test() print(a) 阅读全文
posted @ 2021-04-27 14:18 测试艺术家 阅读(119) 评论(0) 推荐(0) 编辑