heaven123

2018年6月20日

python基础 字典练习

摘要: 练习1:info = [ {'wangming': { 'money':1111, 'car':['bmo','bsj'], 'info':{ 'phone':1511111, 'age':18} } }, { 'lilei': ... 阅读全文

posted @ 2018-06-20 16:41 heaven123 阅读(181) 评论(0) 推荐(0)

python基础(字典)

摘要: 字典的高效取值 阅读全文

posted @ 2018-06-20 16:37 heaven123 阅读(120) 评论(1) 推荐(0)

python "import this"

摘要: The Zen of Python, by Tim Peters Beautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is better than c 阅读全文

posted @ 2018-06-20 13:42 heaven123 阅读(149) 评论(0) 推荐(0)

2018年6月15日

python基础(内存分析,不引入第三方变量的方式交换变量的值)

摘要: a,b指向同一块内存地址 下面方法是重新给b赋值;a,b指向不同的内存地址 字符串或int类型内存分析 阅读全文

posted @ 2018-06-15 18:06 heaven123 阅读(245) 评论(0) 推荐(0)

Python基础(切片,list循环,元组)

摘要: list和字符串循环: 切片:list取值的一种方式,同样适用于字符串(因为字符串也有下标) 不可变类型:元组,字符串 阅读全文

posted @ 2018-06-15 18:01 heaven123 阅读(382) 评论(0) 推荐(0)

python基础(字符串常用方法)

摘要: 字符串不常用方法: 字符串常用的方法: 用户注册的小程序 阅读全文

posted @ 2018-06-15 14:34 heaven123 阅读(116) 评论(0) 推荐(0)

2018年5月31日

webservice接口,用Soapui

摘要: webservice接口怎么测试呢,他不需要你在拼报文了,会给一个webservice的地址,或者wsdl文件,直接在soapui导入,就可以看到这个webservice里面的所有接口,也有报文,直接填入参数调用,看返回结果就可以了。 http://www.webxml.com.cn/WebServ 阅读全文

posted @ 2018-05-31 17:33 heaven123 阅读(189) 评论(0) 推荐(0)

python基础(数组)

摘要: 列表 也叫list 列表 数组 stus = ['明明','莉莉','亮亮'] 新增元素: Append,insert Append 在列表末尾加一个元素 Insert()在指定位置上增加一个元素 删除元素 list.pop(0) list.remove(‘王明’) del list[3] 修改li 阅读全文

posted @ 2018-05-31 16:49 heaven123 阅读(1334) 评论(0) 推荐(0)

Python基础(条件判断,循环,占位符等)

摘要: Python 自动化 系统开发用的语言和自动化脚本可以不同 学习peython可用于: 网路爬虫,数据分,web开发,人工智能,自动化运维,自动化测试,嵌入式,黑客 第三方库比较全 脚本语言:功能单一的语言,如:shell(只能在linux下用) 计算机只认识二进制,所以有编译器(代码通过编译器编译 阅读全文

posted @ 2018-05-31 16:41 heaven123 阅读(1492) 评论(0) 推荐(0)

Charles篡改请求,在手机上抓包,以及弱网设置

摘要: 篡改请求 可以测试各种异常 原理:clint->server正常是客户端发送请求到服务端,charles相当于一个拦截器,拦住客户端的请求,并进行修改,修改后再发送到server端 Server->clint正常是服务端响应客户端请求,结果服务端发送响应后charles拦住了响应信息,并进行修改信息 阅读全文

posted @ 2018-05-31 14:45 heaven123 阅读(2001) 评论(0) 推荐(0)

导航