我有一个df,我想在其中删除一个字符串,然后从中创建一个新列。
a
John/Smith
变为
a b
John /Smith
感谢。
答案 0 :(得分:2)
使用str.split
<强>实施例强>
import pandas as pd
df = pd.DataFrame({"a": ["John/Smith"]})
df[["a", "b"]] = df["a"].str.split("/").apply(pd.Series)
print(df)
<强>输出:强>
a b
0 John Smith