共计 393 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 strip() 方法来删除字符串两边的空白字符。
示例代码:
string = " Hello, World!
"
new_string = string.strip()
print(new_string)
输出结果:
Hello, World!
strip() 方法将删除字符串两边的空白字符,包括空格、制表符和换行符。如果只想删除右边的空白字符,可以使用 rstrip() 方法。
示例代码:
string = " Hello, World!
"
new_string = string.rstrip()
print(new_string)
输出结果:
Hello, World!
注意,strip() 和 rstrip() 方法返回的是删除空白字符后的新字符串,并不会修改原来的字符串。如果想修改原来的字符串,可以将新字符串赋值回原来的变量。
丸趣 TV 网 – 提供最优质的资源集合!
正文完