string.strip()
strip()
方法用于移除字符串的首尾指定字符(默认为空格)
string = " Hello, World! "
stripped_string = string.strip()
得到的结果为 Hello, World!
,去除了首、尾的空格
也可以提供一个参数,指定要移除的字符:
string = " Hello, World! "
stripped_string = string.strip(" !")
得到的结果为 Hello, World
,去除了首、尾的空格和 !
lstrip()
和 rstrip()
的使用方式与strip()
方法类似,只是它们只作用于字符串的一侧.