摘要: 1、https://jmeter-plugins.org/downloads/old/ 下载JMeterPlugins-Extras JMeterPlugins-Standard 最新版本 2、将以上两个文件解压 找到JMeterPlugins-Extras.jar JMeterPlugins-St 阅读全文
posted @ 2018-12-07 09:19 王亚锋 阅读(159) 评论(0) 推荐(0) 编辑
摘要: HTTP1 http://www.XXXXXXX.cn/wechatUser/getVcode?callback=getVcode&phone=13733857173&_=1541041885577 返回值:getVcode({"data":{"vcode":"313901"},"msg":"信息操 阅读全文
posted @ 2018-11-01 14:57 王亚锋 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: class Anmail(object): def __init__(self,name): self.name=name def talk(self): return "Anmail talking" class Dog(Anmail): def __init__(self,name,age): 阅读全文
posted @ 2018-10-18 11:02 王亚锋 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1 # -*- coding: utf-8 -*- 2 # @Time : 2018/10/17 11:02 3 # @Author : wangyafeng 4 # @Email : 279949848@qq.com 5 # @Software: PyCharm 6 7 8 class Father(object): 9 def __init__(se... 阅读全文
posted @ 2018-10-18 09:49 王亚锋 阅读(727) 评论(0) 推荐(0) 编辑
摘要: 1 # -*- coding: utf-8 -*- 2 # @Time : 2018/10/8 11:33 3 # @Author : wangyafeng 4 # @Email : 279949848@qq.com 5 # @Software: PyCharm 6 import psutil,so 阅读全文
posted @ 2018-10-11 09:17 王亚锋 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 思路一:str=‘abcd.....xyz0123456789ABCD....XYZ’ 思路二:str1='abcd...' str2='ABCD....XYZ' str3='0123456789' 思路三:引入string 使用 string.ascii_lowercase 等 思路四:引入ASC 阅读全文
posted @ 2018-10-08 16:49 王亚锋 阅读(944) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-10-08 15:41 王亚锋 阅读(453) 评论(0) 推荐(0) 编辑
摘要: python中对文件、文件夹(文件操作函数)的操作需要涉及到os模块和shutil模块。 得到当前工作目录,即当前Python脚本工作的目录路径: os.getcwd() 返回指定目录下的所有文件和目录名:os.listdir() 函数用来删除一个文件:os.remove() 删除多个目录:os.r 阅读全文
posted @ 2018-10-08 15:39 王亚锋 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1、平台 windows+mysql 2、下载地址 https://www.iminho.me/ 3、帮助手册https://www.iminho.me/wiki/docs/mindoc/mindoc-summary.md 4、安装步骤 4.1 安装go 选择amd64的mis安装包 默认c:\Go 阅读全文
posted @ 2018-09-28 10:14 王亚锋 阅读(2629) 评论(0) 推荐(0) 编辑
摘要: name = input("name:")age = int(input("age:"))job = input("job:")salary = int(input("salary:"))index1=''' index of %s name:%sage:%djob:%ssalary:%d'''%( 阅读全文
posted @ 2018-09-10 10:12 王亚锋 阅读(154) 评论(0) 推荐(0) 编辑