请用python dataframe给我个例子,首先模拟一个2列的字符串数据,然后去除2列字符串数据里的空格和换行标识符
时间: 2024-05-15 19:17:51 浏览: 51
python清除字符串中间空格的实例讲解
当然,没问题。以下是一个简单的例子:
```python
import pandas as pd
# 模拟2列字符串数据
data = {'col1': ['hello ', 'world \n', 'this', 'is ', 'ChitGPT'],
'col2': [' python', ' is \ngreat', '!', ' ', 'AI']}
# 转换为DataFrame
df = pd.DataFrame(data)
# 去除空格和换行标识符
df = df.applymap(lambda x: x.strip().replace('\n', ''))
# 打印结果
print(df)
```
输出结果为:
```
col1 col2
0 hello python
1 world is great
2 this !
3 is
4 ChitGPT AI
```
请注意,我们使用 `applymap()` 函数将转换应用于整个 DataFrame,而 lambda 函数用于删除空格和换行符。
阅读全文