当前位置:首页 > 行业动态 > 正文

python中如何去除空格

在Python中,可以使用字符串的strip()方法去除字符串两端的空格,如果需要去除字符串中间的空格,可以使用replace()方法。

以下是详细的步骤:

1、使用strip()方法去除字符串两端的空格:

text = " 你好,世界! "
result = text.strip()
print(result)

2、使用replace()方法去除字符串中间的空格:

text = " 你 好,世 界! "
result = text.replace(" ", "")
print(result)

3、使用正则表达式库re去除字符串中的空格:

import re
text = " 你 好,世 界! "
result = re.sub(r's', '', text)
print(result)

以上三种方法都可以实现去除字符串中的空格。

0