python
微风不燥阳光正好
努力向前的小蜗牛
展开
-
一张图实现脚本录制快速完成自动化
语言的下拉框支持多种语言,python,java, js, robotframework格式。原创 2021-11-04 17:54:36 · 305 阅读 · 0 评论 -
python数据类型之字符串
1.如何定义一个字符串,使用单引号’'或者双引号""。a =“22”c = ‘yt’print(type(aa),type©) # 查看变量类型2.字符串拼接操作2.1使用+号拼接a = ‘aa’b =‘bb’c=a+bprint©2.2使用join函数可参考https://blog.csdn.net/weixin_45629377/article/details/1180534523字符串截取,使用[]进行操作,返回结果是一个字符串3.1切割所有字符,a = ‘aAbBcCdD原创 2021-07-04 17:54:09 · 105 阅读 · 0 评论 -
python内置函数之split函数
split('sep',num):分割函数,默认以空格分割[但是不能用''分割],返回结果是一个列表形式.sep:指定分隔符,num:切割次数使用场景:1.以空格切割单词 a = 'this is a good place'res = a.split() # 或者res = a.split(' ')print(res,type(res)) 打印结果: ['this', 'is', 'a', 'good', 'place']2.num:指定分割位置,num为2时,切割两次,num为负数时,切.原创 2021-06-19 15:28:27 · 1169 阅读 · 0 评论 -
python实用内置函数之join函数
1join:拼接函数 使用模式:sepration.join(param):sepration:连接符号param形式可以是:元素序列、字符串、元组、字典的原创 2021-06-19 14:45:35 · 530 阅读 · 0 评论