pandas txt删除字符
时间: 2023-06-12 12:06:07 浏览: 75
pandas中去除指定字符的实例
如果你想在 pandas 的 DataFrame 中删除字符串中的某些字符,可以使用 str.replace() 方法。例如,假设你有一个 DataFrame,其中某一列包含了字符串 "abcdefg",你想要删除其中的 "c" 和 "f":
```
import pandas as pd
df = pd.DataFrame({"col1": ["abcdefg"]})
df["col1"] = df["col1"].str.replace("c|f", "")
print(df)
```
这样就会输出一个新的 DataFrame,其中 "c" 和 "f" 已经被删除了:
```
col1
0 abdeg
```
阅读全文