摘要:
requests 测试demo http://httpbin.org/ 使用 pip 安装命令如下: pip install requests 安装检测 打开 cmd 窗口,输入 python 然后导入 requests 如果安装成功没有任何提示 import requests 发送不同类型 HTT 阅读全文
摘要:
a = 10 def test(): global a a = 5 print(a) test() print(a) 阅读全文