1.去除空格
str.strip():删除字符串两边的指定字符,括号的写入指定字符,默认为空格
>>> a=' hello '
>>> b=a.strip()
>>> print(b)
hello
str.lstrip():删除字符串左边的指定字符,括号的写入指定字符,默认为空格
str.rstrip():删除字符串右边指定字符,默认为空格
2.复制字符串
>>> a='hello world'
>>> b=a
>>> print(a,b)
hello world hello world
3.连接字符串
+:连接2个字符串
>>> a='hello '
>>> b='world'
>>> print(a+b)
hello world
str.join:连接2个字符串,可指定连接符号(关于join,读者可以自己去查看一些相关资料)
>>> a='hello '
>>> b='####'>>> a.join(b)'#hello #hello #hello #'
#str.index 和str.find 功能相同,区别在于find()查找失败会返回-1,不会影响程