1、find方法可以在较长的字符串中找到子串。
返回子串所在位置的最左端索引,如果找不到,返回-1
a='abcdefghijk' print(a.find('abc'))#theresult:0 print(a.find('abc',10,100))#theresult:11指定搜索位置的开始和结束
2、join法是一种非常重要的字符串法。
是split方法的逆方法,用于连接序列中的元素,并且所有需要连接的元素都必须是字符串。
a=['1','2','3'] print('+'.join(a))#theresult:1+2+3
3、split是join的逆法。
将字符串分成序列
print('1+2+3+4'.split('+'))#theresult:['1','2','3','4']
4、strip方法返回以去除第一个空格。
print("testtest".strip())#theresult:“testtest”
replace方法返回一个字符串。
替换所有匹配项后,得到字符串。
print("Thisisatest".replace('is','is_test'))#theresult:This_testis_testatest
以上是Python字符串法的使用,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。