3章 内容回顾: 1. 计算机组成 2. 程序编译器 3. 变量 4. 条件 5. 循环 6. py2与py3区别 - 默认编码, - 除法, - input ,raw_input 7. 位,字节关系 8. 运算符: - and or - in not - py2 除法特殊代码 - += -= 9. 编码 汉字在utf-8里位3个字节,24位:汉字在GBK里是两个字节,16位 ascii --> unicode(4个字节,32位表示) ->(优化) utf-8/utf-16/utf-32 10…
0003.5-20180422-自动化第四章-python基础学习笔记--脚本 1-shopping """ v = [ {"name": "电脑","price":"1999"}, {"name": "鼠标", "price": "10"}, {"name": "游艇", &q…
======================学习python==================介绍: python种类: cpython(*),jpython,ironpython,rubypython,pypy ... 种类有很多,规则只有一个 python版本 Python2.7 Python3.x 学习Phtyon,学习规则 1. 安装解释器 python.exe 解释器程序 2. 写代码,让解释器运行 ”黑框“:开始->cmd->回车 - 解释器路径 代码文件路径 (写代码) 添加操…
内容回顾: - bytes - str 和bytes - int - str - list - tuple - 深拷贝和浅拷贝 今日内容: 数据类型 - bytes - int - str - bool - list - tuple - dict (字典) dic = {'k1':'v1'} - values - keys - items - get - setdefault - fromkeys dict.fromkeys - update - pop - popitem - copy - c…
day6 内容回顾: 1. 变量 2. 条件 3. while循环 4. 数据类型 - int - bit_length - bool - True/False - str - upper - lower - strip - split - replace - join - capitalize - startswith - endswith - isdecimal - list - append - insert - reverse - tuple - - dict - get - items…
内容回顾:1.数据类型 2.for和while循环 continue break #如下循环将怎么打印结果? for i in range(1,10): print(i) for i in range(10,20): print(i) #如下循环将怎么打印结果?----结果只打印1 for i in range(1,10): print(i) break for i in range(10,20): print(i) #如下循环将怎么打印结果?----只打印1,10-19 for i in ra…
参考资料: 1. <Python基础教程> 2. http://www.runoob.com/python/python-chinese-encoding.html 3. http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000 ▶ 运算符 ▼// 整除 ▼ ** 幂次 ▼ !=和<> 不等于 ▼逻辑运算符:and与 or或 not非 ▼ 成员运算符:① in 如果在指定序列…
参考资料: 1. <Python基础教程> 2. http://www.runoob.com/python/python-chinese-encoding.html 3. http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000 ▶ 变量赋值 Python中变量不需要声明,变量赋值操作就是变量声明和定义的过程. 每个变量在使用前都必须赋值,变量赋值以后该变量才会被创建.例子如下: #!/…
声明:  本人是在校学生,自学python,也是刚刚开始学习,写博客纯属为了让自己整理知识点和关键内容,当然也希望可以通过我都博客来提醒一些零基础学习python的人们.若有什么不对,请大家及时指出,欢迎评论指点.  首先,在我的第一本python书的第一页就写了这样一段话“life is short,you need python-----Bruce Eckel” “人生苦短,我用python”工欲善其事,必先利其器.我们要成为“大牛”,要用python去拯救世界,要做的第一件事就是要下载一个…
自动化非自动化的区别 自动化测试就是让机器按照人的想法把功能全部跑一遍 自动化测试的过程,让我们写一段程序去测试另一段程序是否正常的过程 Java 编译型语言,   编码-->编译-->解析    Python解释型语言   编码-->解析 Python特点 入门简单.功能强大.丰富的第三方库.热门流行.代码量少 优点: 1.简单.易学 2.免费.开源 3.一切皆对象 4.丰富的第三方库 5.可扩展性好,胶水语言  (胶水语言是指能够很好的整合其他语言开发的模块的语言) 缺点:代码执行速…