
python
l_degege
这个作者很懒,什么都没留下…
展开
-
python中requests库入门及写入文件
1、python中requests库入门import requestsr = requests.get("https://www.baidu.com")print(r.status_code)print(r.text)注:https://www.cnblogs.com/wkfvawl/p/9496323.html2、写入文件f = open('E:/test.html',...转载 2020-04-10 09:29:10 · 1540 阅读 · 0 评论 -
python初步
1、python 需要申明变量吗声明变量的时候,直接使用例如a = 1这样的方式即可注:https://blog.youkuaiyun.com/qq20004604/article/details/781763292、python if elif else用法 if 表达式: 语句块 if 表达式: 语句块 1 else: 语句块 2 if 表达式 1...转载 2020-03-23 15:02:15 · 125 阅读 · 0 评论