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