赞
赏
在开发过程中,有时候我们需要去除一个 字符串 中的空格,在 Python 中,去除字符串中空格的函数为 strip() 。
S.strip([chars]) -> str
参数 | 描述 |
---|---|
S | 表示原字符串。 |
chars | 要去除的字符串。 |
去除特定字符后的字符串。
使用 strip() 函数,去除字符串的空格
print("嗨客网(www.haicoder.net)")
# 使用 strip() 函数,去除字符串的空格
strHaicoder = " 嗨客网(HaiCoder) "
print("strHaicoder =", strHaicoder.strip(), sep='')
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的 变量 strHaicoder,并且赋值为左右带空格的字符串,接着我们使用字符串的 strip() 函数去除变量 strHaicoder 的空格,并使用 print() 函数打印最终结果。
我们发现,字符串的左边和右边的空格都已经被清除了。
使用 strip() 函数,去除字符串中间包含空格
print("嗨客网(www.haicoder.net)")
# 使用 strip() 函数,去除字符串中间包含空格
strHaicoder = " 嗨客网 (HaiCoder) "
print("strHaicoder =", strHaicoder.strip(), sep='')
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的变量 strHaicoder,并且赋值为左右和中间都带空格的字符串,接着我们使用字符串的 strip() 函数去除变量 strHaicoder 的空格,并使用 print() 函数打印最终结果。
我们发现,字符串的左边和右边的空格都已经被清除了,但中间的空格还是存在的。
在 Python 中,去除字符串中空格的函数为 strip() 。Python strip() 函数语法:
S.strip([chars]) -> str
使用 strip() 函数的默认参数,只可以去除字符串的左右两边的空格,中间的空格无法删除。