Handsome_zhou 发表于 2022-2-18 16:42:31

python strip()方法

描述:
python strip()方法用于移除字符串头尾指定的字符。

该方法只能移除开头或者是结尾的字符,不能删除中间部分的字符。

语法:
strip()方法语法:str.strip()

chars -- 移除字符串头尾指定的字符串序列。

返回值:返回移除字符串头尾指定的字符生成的新字符串。

实例:

str = '00000003210Runoob01230000000'
print(str.strip('0')) #去除首尾字符0

输出结果:3210Runoob0123

str2 = '       Runoob       '
print(str2.strip())#去除首尾空格

输出结果:Runoob


页: [1]
查看完整版本: python strip()方法