上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页

2018年11月19日

python matplotlib

摘要: https://www.cnblogs.com/dajunma21/p/9001145.html 阅读全文

posted @ 2018-11-19 23:50 游荡的鱼 阅读(99) 评论(0) 推荐(0) 编辑

2018年11月13日

python @classmethod 和 @staticmethod的区别

摘要: @classmethod: 和 @staticmethod: 两种方式 都可以通过类直接调用, 当然也都可以 通过 实例进行调用 区别:@classmethod 可以调用本身类里的其他方法,而 @staticmethod不可以调用类里的其他方法 普通方法则需要 使用 实例 进行 调用 该方法 而d( 阅读全文

posted @ 2018-11-13 20:32 游荡的鱼 阅读(148) 评论(0) 推荐(0) 编辑

python __init__.py

摘要: 模块初始化文件 在此文件中导入 其他要使用的模块,则该文件夹中的其他模块则不用import 导入添加环境: import sys sys.path.append("/test/") print(sys.path) 打印环境变量 阅读全文

posted @ 2018-11-13 09:41 游荡的鱼 阅读(123) 评论(0) 推荐(0) 编辑

jmeter

摘要: jmeter 安装 相应时间图形: 3 Basic Graphs 安装 线程检测图形插件: Custom Thread Groups 安装服务器检测cpu/IO等: PerfMon 代理agent: https://github.com/undera/perfmon agent/blob/maste 阅读全文

posted @ 2018-11-13 08:51 游荡的鱼 阅读(83) 评论(0) 推荐(0) 编辑

2018年10月13日

python 类

摘要: class Base1(object): def __init__(self): print('Basexxxx create') print("base1") def test(self): print("testxxxx") Base.__init__(self) super(childA, s 阅读全文

posted @ 2018-10-13 15:53 游荡的鱼 阅读(84) 评论(0) 推荐(0) 编辑

2018年8月21日

python 修饰符

摘要: 修饰符“@” 输出: test test1 把@test下面的定义的函数作为参数传入test 阅读全文

posted @ 2018-08-21 17:09 游荡的鱼 阅读(117) 评论(0) 推荐(0) 编辑

python 修改后缀名

摘要: 使用到的模块 os.walk os.path.join os.path.splitext os.rename 重命名文件 阅读全文

posted @ 2018-08-21 16:56 游荡的鱼 阅读(170) 评论(0) 推荐(0) 编辑

2018年7月31日

mysql 按字段a排序 并编序列号,字段a值相同的编号相同

摘要: 先在表中创建 字段a 的分组排序 并自增序号, 然后使用原来的表 进行根据字段a赋值,并显示加的序号列 阅读全文

posted @ 2018-07-31 09:07 游荡的鱼 阅读(2101) 评论(0) 推荐(0) 编辑

2018年7月25日

python 进度条

摘要: pip install tqdm 阅读全文

posted @ 2018-07-25 10:13 游荡的鱼 阅读(110) 评论(0) 推荐(0) 编辑

2018年7月21日

python excel写入 openpyxls

摘要: 上种方法 写入文件,会覆盖打开前的内容 这种方法是不会覆盖的 阅读全文

posted @ 2018-07-21 20:03 游荡的鱼 阅读(1887) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页

导航