Python 字符串 strip() 方法

实例

删除字符串开头和结尾的空格:

txt = "     banana     "

x = txt.strip()

print("of all fruits", x, "is my favorite")

运行实例

定义和用法

strip() 方法删除任何前导(开头的空格)和尾随(结尾的空格)字符(空格是要删除的默认前导字符)。

语法

string.strip(characters)

参数值

参数 描述
characters 可选。一组字符,要删除的前导/尾随字符的字符。

更多实例

实例

删除前导和尾随字符:

txt = ",,,,,rrttgg.....banana....rrr"

x = txt.strip(",.grt")

print(x)

运行实例