Python测试人员需要掌握的知识


Posted in Python onFebruary 08, 2018

a、字符串的定义方法

使用单引号(')

你可以用单引号指示字符串,就如同'Quote me on this'这样。所有的空白,即空格和制表符都照原样保留。

使用双引号(")

在双引号中的字符串与单引号中的字符串的使用完全相同,例如"What's your name?"。

使用三引号('''或""")

利用三引号,你可以指示一个多行的字符串。你可以在三引号中自由的使用单引号和双引号。例如:

'''This is a multi-line string. This is the first line.
This is the second line.
"What's your name?," I asked.
He said "Bond, James Bond."
'''

转义符

用\'来指示单引号——注意这个反斜杠。现在你可以把字符串表示为'What\'s your name?'。

表示这个特别的字符串的方法是"What's your name?",即用双引号或三引号。

在一个字符串中,行末的单独一个反斜杠表示字符串在下一行继续,而不是开始一个新的行。例如:

"This is the first sentence.\
This is the second sentence."

b、变量

定义变量的方法与其它语言类似,变量的类型是通过赋值来确定的

Int型   Number = 0
字符串型 String = ‘'
Dict型  dict = {}

c、缩进

同一层次的语句必须有相同的缩进。每一组这样的语句称为一个块

i = 5
 print 'Value is', i
print 'I repeat, the value is', i

 d、运算符

运算符 名称 说明 例子
+ 两个对象相加 3 + 5得到8。'a' + 'b'得到'ab'。
- 得到负数或是一个数减去另一个数 -5.2得到一个负数。50 - 24得到26。
* 两个数相乘或是返回一个被重复若干次的字符串 2 * 3得到6。'la' * 3得到'lalala'。
/ x除以y 4/3得到1(整数的除法得到整数结果)。4.0/3或4/3.0得到1.3333333333333333
// 取整除 返回商的整数部分 4 // 3.0得到1.0
% 取模 返回除法的余数 8%3得到2。-25.5%2.25得到1.5
小于 返回x是否小于y。所有比较运算符返回1表示真,返回0表示假。这分别与特殊的变量True和False等价。注意,这些变量名的大写。 5
> 大于 返回x是否大于y 5 > 3返回True。如果两个操作数都是数字,它们首先被转换为一个共同的类型。否则,它总是返回False。
小于等于 返回x是否小于等于y x = 3; y = 6; x
>= 大于等于 返回x是否大于等于y x = 4; y = 3; x >= y返回True。
== 等于 比较对象是否相等 x = 2; y = 2; x == y返回True。x = 'str'; y = 'stR'; x == y返回False。x = 'str'; y = 'str'; x == y返回True。
!= 不等于 比较两个对象是否不相等 x = 2; y = 3; x != y返回True。
not 布尔“非” 如果x为True,返回False。如果x为False,它返回True。 x = True; not y返回False。
and 布尔“与” 如果x为False,x and y返回False,否则它返回y的计算值。 x = False; y = True; x and y,由于x是False,返回False。在这里,Python不会计算y,因为它知道这个表达式的值肯定是False(因为x是False)。这个现象称为短路计算。
or 布尔“或” 如果x是True,它返回True,否则它返回y的计算值。 x = True; y = False; x or y返回True。短路计算在这里也适用。

最常用的是小(等)于、大(等)于、(不)等于、not、and、or

e、控制流

if语句

number = 23
guess = int(raw_input('Enter an integer : '))
 
if guess == number:
  print 'Congratulations, you guessed it.' # New block starts here
  print "(but you do not win any prizes!)" # New block ends here
elif guess < number:
  print 'No, it is a little higher than that' # Another block
  # You can do whatever you want in a block ...
else:
  print 'No, it is a little lower than that'
  # you must have guess > number to reach here
 
print 'Done'
# This last statement is always executed, after the if statement is executed
 
if 'a' in name:
  print 'Yes, it contains the string "a"'

elif和else部分是可选的

while语句

number = 23
running = True
while running:
  guess = int(raw_input('Enter an integer : '))
  if guess == number:
    print 'Congratulations, you guessed it.'
    running = False # this causes the while loop to stop
  elif guess < number:
    print 'No, it is a little higher than that'
  else:
    print 'No, it is a little lower than that'
else:
  print 'The while loop is over.'
  # Do anything else you want to do here
print 'Done'

for语句

for i in range(1, 5):
print i
等价于
for i in range(5):
print i

for循环在这个范围内递归——for i in range(1,5)等价于for i in [1, 2, 3, 4],这就如同把序列中的每个数(或对象)赋值给i,一次一个,然后以每个i的值执行这个程序块

break语句

while True:
  s = raw_input('Enter something : ')
  if s == 'quit':
    break
  print 'Length of the string is', len(s)
print 'Done'

continue语句

while True:
  s = raw_input('Enter something : ')
  if s == 'quit':
    break
  if len(s) < 3:
    continue
print 'Input is of sufficient length'
Python 相关文章推荐
Python中多线程及程序锁浅析
Jan 21 Python
python采用django框架实现支付宝即时到帐接口
May 17 Python
python urllib urlopen()对象方法/代理的补充说明
Jun 29 Python
Django数据库操作的实例(增删改查)
Sep 04 Python
微信小程序跳一跳游戏 python脚本跳一跳刷高分技巧
Jan 04 Python
在python tkinter中Canvas实现进度条显示的方法
Jun 14 Python
python中比较两个列表的实例方法
Jul 04 Python
在自动化中用python实现键盘操作的方法详解
Jul 19 Python
Python3 批量扫描端口的例子
Jul 25 Python
python中hasattr()、getattr()、setattr()函数的使用
Aug 16 Python
在python中logger setlevel没有生效的解决
Feb 21 Python
屏蔽Django admin界面添加按钮的操作
Mar 11 Python
python实现单向链表详解
Feb 08 #Python
Python生成器以及应用实例解析
Feb 08 #Python
代码分析Python地图坐标转换
Feb 08 #Python
python爬虫中get和post方法介绍以及cookie作用
Feb 08 #Python
Python OpenCV 直方图的计算与显示的方法示例
Feb 08 #Python
python OpenCV学习笔记之绘制直方图的方法
Feb 08 #Python
Python列表推导式与生成器表达式用法示例
Feb 08 #Python
You might like
无线电的诞生过程
2021/03/01 无线电
虹吸壶煮咖啡26个注意事项
2021/03/03 冲泡冲煮
PHP中的错误处理、异常处理机制分析
2012/05/07 PHP
php中CI操作多个数据库的代码
2012/07/05 PHP
搜索附近的人PHP实现代码
2018/02/11 PHP
js实现图片放大缩小功能后进行复杂排序的方法
2012/11/08 Javascript
jQuery基本选择器选择元素使用介绍
2013/04/18 Javascript
JavaScript 学习笔记之操作符
2015/01/14 Javascript
JS简单循环遍历json数组的方法
2016/04/22 Javascript
快速了解vue-cli 3.0 新特性
2018/02/28 Javascript
JS使用正则表达式获取小括号、中括号及花括号内容的方法示例
2018/06/01 Javascript
vue下history模式刷新后404错误解决方法
2018/08/18 Javascript
js实现多图和单图上传显示
2019/12/18 Javascript
JS实现滑动导航效果
2020/01/14 Javascript
浅谈VUE中演示v-for为什么要加key
2020/01/16 Javascript
[04:28]DOTA2亚洲邀请赛小组赛第五日 TOP10精彩集锦
2015/02/03 DOTA
[59:42]Secret vs Alliacne 2019国际邀请赛小组赛 BO2 第一场 8.15
2019/08/17 DOTA
[01:16]DOTA2小知识课堂 Ep.03 芒果树无伤肉山
2019/12/05 DOTA
wxpython多线程防假死与线程间传递消息实例详解
2019/12/13 Python
python标准库os库的函数介绍
2020/02/12 Python
浅谈Python中的生成器和迭代器
2020/06/19 Python
详细分析Python collections工具库
2020/07/16 Python
python基于openpyxl生成excel文件
2020/12/23 Python
婚礼主持词
2014/03/13 职场文书
安全承诺书范文
2014/03/26 职场文书
煤矿安全知识竞赛活动总结
2014/07/07 职场文书
天猫活动策划方案
2014/08/21 职场文书
新党章的学习心得体会
2014/11/07 职场文书
答谢词范文
2015/01/05 职场文书
给老师的一封感谢信
2015/01/20 职场文书
留学推荐信(中英文版)
2015/03/26 职场文书
返乡农民工证明
2015/06/24 职场文书
2015年暑期社会实践总结
2015/07/13 职场文书
奖学金申请书(范文)
2019/08/14 职场文书
公文写作:工伤事故分析报告怎么写?
2019/11/05 职场文书
oracle delete误删除表数据后如何恢复
2022/06/28 Oracle