python不能去掉字符串的空格吗

python

python中去除字符串空格的方法如下

str 提供了如下常用的方法来删除空白:

strip():删除字符串前后的空白。

lstrip():删除字符串前面(左边)的空白。

rstrip():删除字符串后面(右边)的空白。

如果在交互式解释器中输入 help(str.lstrip) 来查看 lstrip() 方法的帮助信息,则可看到如下输出结果:

>>> help(str.lstrip)

Help on method_descriptor:

lstrip(...)

    S.lstrip([chars]) -> str

   

    Return a copy of the string S with leading whitespace removed.

    If chars is given and not None, remove characters in chars instead.

>>>

从上面介绍可以看出,lstrip() 方法默认删除字符串左边的空白,但如果为该方法传入指定参数,则可删除该字符串左边的指定字符。如下代码示范了上面方法的用法:

s = '  this is a puppy  '

# 删除左边的空白

print(s.lstrip())

# 删除右边的空白

print(s.rstrip())

# 删除两边的空白

print(s.strip())

# 再次输出s,将会看到s并没有改变

print(s)

推荐学习《python教程》。

以上是 python不能去掉字符串的空格吗 的全部内容, 来源链接: utcz.com/z/522017.html

回到顶部