python中字符串消除空格
时间: 2023-10-24 22:08:44 浏览: 166
在Python中,可以使用strip()方法来消除字符串两端的空格,也可以使用replace()方法来替换字符串中的空格。例如:
```python
s = " hello world! "
s = s.strip() # 消除两端空格
print(s) # 输出 "hello world!"
s = " hello world! "
s = s.replace(" ", "") # 替换空格
print(s) # 输出 "helloworld!"
```
需要注意的是,以上两种方法都不会改变原始字符串的值,而是返回一个新的字符串。如果想要在原始字符串上进行修改,则需要重新赋值。
相关问题
python字符串去空格
在Python中,你可以使用字符串的 `strip()` 方法去除字符串两端的空格,或者使用 `replace()` 方法替换字符串中的空格。
下面是两种方法的示例代码:
1. 使用 `strip()` 方法去除字符串两端的空格:
```python
string = " Hello, World! "
stripped_string = string.strip()
print(stripped_string)
如何使用python去掉字符串中的空格
使用python可以使用字符串的strip()方法去除字符串中的空格。strip()方法会去除字符串开头和结尾的空格,也可以通过传入参数去除字符串中的其他字符。
示例代码如下:
```
# 去除字符串开头和结尾的空格
s = " hello world "
s = s.strip()
print(s)
# 去除字符串中的其他字符
s = " hello world "
s = s.strip(" ")
print(s)
```
输出结果为:
```
hello world
hello world
```
阅读全文