扩展字符串内置函数用法
a = "Alex li 金角大王"
print(a.center(50,"-"))? # output : --------------------Alex 金角大王---------------------
print(a.count("l",0,4))#1 print(a.endswith("王八")) # False 判断结尾 print(a.startswith("Alex")) # False 判断开头
print(a.find("i"))? # 字符查找,返回-1代表没找到,如果找到了,就返回所查字符的索引
print(a.isdigit()) print("22".isdigit()) # 判断是否是整数
l = ["alex","black girl","peiqi"] print("-".join(l)) # 拼接字符串, alex-black-girl-peiqi
print(a.replace("l","M" ,1)) # 字符串替换, output: AMex li 金角大王
print(a.split("l",1))? # 字符串分割 output: ['A', 'ex li 金角大王']
下面摘抄其他博主讲解
1、join()函数
语法:? 'sep'.join(seq)
参数说明 sep:分隔符。可以为空 seq:要连接的元素序列、字符串、元组、字典 上面的语法即:以sep作为分隔符,将seq所有的元素合并成一个新的字符串
返回值:返回一个以分隔符sep连接各个元素后生成的字符串
原文链接:https://blog.csdn.net/doiido/article/details/43538833
|