总结
dongyanfei123
记录学习点滴
展开
-
windows版kibana和ElasticSearch安装包下载
共享了我的百度网盘安装包,有需要的自取链接:https://pan.baidu.com/s/1FzRtH5JIHBrSTrLq4Exyrw提取码:c2up链接:https://pan.baidu.com/s/1VfQbSwWWmnTEj1YDceGLKg提取码:r7qf...原创 2019-12-12 22:36:46 · 372 阅读 · 0 评论 -
总结 python eval 和json.loads()区别
JSON有两种结构:“名称/值”对的集合(A collection of name/value pairs)。不同的语言中,它被理解为对象(object),纪录(record),结构(struct),字典(dictionary),哈希表(hash table),有键列表(keyed list),或者关联数组 (associative array)。值的有序列表(An ordered list...原创 2019-10-31 23:07:22 · 1056 阅读 · 0 评论 -
python os、sys模块总结
OS模块的常见用法os.remove() 删除文件os.rename() 重命名文件os.walk() 生成目录树下的所有文件名os.chdir() 改变目录os.mkdir/mkdirs 创建目录/多层目录os.rmdir/removedirs 删除目录/多层目录os.listdir() 列出指定目录的文件os.getcwd()...转载 2019-07-25 19:38:41 · 145 阅读 · 0 评论 -
pytest中Fixture使用
原文地址:https://www.jianshu.com/p/54b0f4016300一. fixture介绍fixture是pytest的一个闪光点,pytest要精通怎么能不学习fixture呢?跟着我一起深入学习fixture吧。其实unittest和nose都支持fixture,但是pytest做得更炫。fixture是pytest特有的功能,它用pytest.fixture标识...转载 2019-08-18 11:53:50 · 1247 阅读 · 0 评论