Python去除空格和换行
时间: 2023-11-05 17:12:25 浏览: 172
在Python中,可以使用字符串的strip()方法去除字符串两端的空格和换行符。例如:
```
my_string = " hello world\n"
clean_string = my_string.strip()
print(clean_string)
```
输出结果为:
```
hello world
```
另外,如果想要去除字符串中的所有空格和换行符,可以使用replace()方法替换为空字符串。例如:
```
my_string = " hello world\n"
clean_string = my_string.replace(" ", "").replace("\n", "")
print(clean_string)
```
输出结果为:
```
helloworld
```
相关问题
python 去除str中所有的空格和换行
可以使用replace()函数将空格和换行替换为空字符串,示例代码如下:
str = "hello world\n"
str = str.replace(" ", "").replace("\n", "")
print(str) #输出helloworld
python去除列表中换行
可以使用列表推导式和字符串的 `strip()` 方法来去除列表中的换行符。示例代码如下:
```python
my_list = ['hello\n', 'world\n', 'python\n']
new_list = [item.strip() for item in my_list]
print(new_list)
```
输出结果为:
```
['hello', 'world', 'python']
```
在这个示例中,`strip()` 方法被用来去除字符串中的换行符和空格,然后通过列表推导式将处理后的字符串重新组成一个新的列表。
阅读全文