python去除空格
时间: 2023-07-29 11:08:40 浏览: 130
可以使用`strip()`函数去除列空格,例如:
```python
import pandas as pd
# 创建示例数据
data = {'col1': [' a', 'b ', ' c '], 'col2': [1, 2, 3]}
df = pd.DataFrame(data)
# 去除col1列的空格
df['col1'] = df['col1'].str.strip()
print(df)
```
输出结果为:
```
col1 col2
0 a 1
1 b 2
2 c 3
```
相关问题
python 去除空格
可以使用字符串的 strip() 方法去除字符串两端的空格,或者使用 replace() 方法将字符串中的空格替换为空。例如:
```python
s = " Hello, world! "
s = s.strip() # 去除两端的空格
print(s) # 输出 "Hello, world!"
s = "Hello, world!"
s = s.replace(" ", "") # 将空格替换为空
print(s) # 输出 "Hello,world!"
```
Python去除空格和换行
在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
```
阅读全文