摘要: import requests (1)一行代码启动一个Web服务 python -m SimpleHTTPServer 8080 # python2python3 -m http.server 8080 # python3 (2)一行代码实现变量值互换 a, b = 1, 2; a, b = b, 阅读全文
posted @ 2020-11-07 18:05 python阿喵 阅读(291) 评论(0) 推荐(0) 编辑