上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 1.排序知识点: a.sort() sort函数,将a列表排序,打印a sorted(a) sorted函数,是将a传参进去 2.set()集合有去重效果 阅读全文
posted @ 2021-01-28 16:24 文刀六日 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 有一个数据list of dict如下 a = [ {"yoyo1": "123456"}, {"yoyo2": "123456"}, {"yoyo3": "123456"}, ] 写入到本地一个txt文件,内容格式如下: yoyo1,123456 yoyo2,123456 yoyo3,123456 阅读全文
posted @ 2021-01-28 14:51 文刀六日 阅读(4812) 评论(0) 推荐(0) 编辑
摘要: 学习知识点: 1.jsonpath中语法 $根目录 $.取到第一层目录值 $..取到多层目录值 2.可以进行逻辑判断?() ,使用@表达式获取当前节点 3.学习博客: https://www.cnblogs.com/yoyoketang/p/14305895.html 阅读全文
posted @ 2021-01-28 11:16 文刀六日 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1.json转dict取值 json转dict json.loads() 取值用的get() 2.正则取值 使用得re.findall()或者re.search() jsonpath取值: 安装:pip install jsonpath jsonpath.jsonpath() $根目录 ..相对路径 阅读全文
posted @ 2021-01-27 14:29 文刀六日 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1.查看pip版本:pip show pip 2.升级pip:python -m pip install --upgrade pip 3.安装jsonpath:pip install jsonpath 阅读全文
posted @ 2021-01-27 09:21 文刀六日 阅读(668) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-01-25 22:38 文刀六日 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 1.安装yaml pip install pyyaml,安装成功后site-packages文件夹中有yaml文件夹 2.学习string模块中的Template字符串类型,学习资料:博客https://www.cnblogs.com/paisen/p/3592118.html 读取字符串中变量的值 阅读全文
posted @ 2021-01-21 17:40 文刀六日 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 如果有一个列表a=[1,3,5,7,11] 问题:1如何让它反转成[11,7,5,3,1] 2.取到奇数位值的数字,如[1,5,11] 阅读全文
posted @ 2021-01-21 10:26 文刀六日 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 思路: 1.99乘法表是从1到9得数字进行计算,设定i 到 1-9,j是要1到 i 2. 问题:打印出来是有换行得,那么加上 end= ' '将结尾得换行去掉,变成空字符 阅读全文
posted @ 2021-01-21 10:22 文刀六日 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-01-20 17:57 文刀六日 阅读(72) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页