python——一些常用的方法类】的更多相关文章

测试的时候经常需要使用一些方法都整理放在一起,方便调用 首先一些基本的配置引入 localReadConfig = readConfig.ReadConfig() proDir = readConfig.proDir log = Log.get_log() caseNo = 0 根据xls_name和sheet_name来读取数据 def get_xls(xls_name, sheet_name): """ get interface data from xls file :…
这是本人在学习python过程中总结的一些关于字符串的常用的方法. 文中引用了python3.5版本内置的帮助文档,大致进行翻译,并添加了几个小实验. isalnum S.isalnum() -> bool #字符串里所有的字符都是字母或者数字时返回True,否则返回False Return True if all characters in S are alphanumeric and there is at least one character in S, False otherwise.…
format常用格式化 tp1="i am {},age {},{}".format('LittlePage',18,'boy') tp2="i am {},age {},{}".format(*['LittlePage',18,'boy'])#学过c++的感觉是{}中传入的应该是指针,视频中没讲,自己个人认为 tp3='i am {0},age {1},really{1}'.format("LittlePage",18)#从索引0开始,一直传入…
def __add__(self, *args, **kwargs): # real signature unknown """ Return self+value. """ pass 返回相加数值 def __alloc__(self): # real signature unknown; restored from __doc__ """ B.__alloc__() -> int Return the nu…
构造和初始化 __init__我们很熟悉了,它在对象初始化的时候调用,我们一般将它理解为"构造函数". 实际上, 当我们调用x = SomeClass()的时候调用,__init__并不是第一个执行的, __new__才是.所以准确来说,是__new__和__init__共同构成了"构造函数". __new__是用来创建类并返回这个类的实例, 而__init__只是将传入的参数来初始化该实例. __new__在创建一个实例的过程中必定会被调用,但__init__就不…
one.将英文字符设置大小写 upper()  :将英文字符设置大写 lower()   :将英文字符设置小写 two.去掉字符串的首尾空格    不能去除字符串中间的空格偶 strip() : 去掉字符串首尾空格 lstrip() :去掉字符串最左边空格 rstrip() :去掉字符串最右边空格 three.拆分字符串 split() :以分隔符作为参数,返回拆分后的字符串组成的列表,拆分后分隔符消失 four.查找字符串的位置   找到就返回该位置找不到就返回-1 find() :  接收一…
一.模拟手机打开页面(H5测试) from selenium import webdriver mobile_emulation = {'deviceName':'iPhone X'} options = webdriver.ChromeOptions() options.add_experimental_option('mobileEmulation',mobile_emulation) driver = webdriver.Chrome(chrome_options=options) dri…
# Strings have many methods wo can use rand_string=" life is a beautiful struggle " print("去除左边空格:",rand_string.lstrip()) print("去除右边的空格:",rand_string.rstrip()) print("去除两边的空格:",rand_string.strip()) print() rand_str…
python 列表常用的方法 1.append( ):用于在列表末尾添加新的对象 list.appent(obj) #obj:添加到列表末尾的对象 #!/usr/bin/python aList = [123,'xyz','zara','abc'] aList.append(2009) print("Updated List:",aList) #输出结果:Updated List: [123, 'xyz', 'zara', 'abc', 2009] extend( ):将列表元素(或任…
python字符串常用的方法 1. find( ):在字符串中搜索指定的值并返回它被找到的位置,如果没有找到,则返回-1 string.find(value,start,end) #value:必需,要检索的值:start:可选,开始检索的位置,默认是0:end:可选,结束检索的位置,默认是字符串的结尾. #!/usr/bin/python #如果只是位置5和10之间搜索时,字母“e”首次首先在哪里? txt = "Hello, welcome to my world." x = tx…