两列 pandas 中的重复数据删除。pandas 中的数据可能放错了位置,有些是空值。
Person Name1 Name2
0 Jet NaN
1 Edward Lach
2 NaN Jet
3 Lach Edward
为 Name1 和 Name2 生成列表并查看它们是否存在。有没有更好的方法来做到这一点?
set1,set2 = list(df["Name1"]),list(df["Name2"])
Expected
Person SurName FirstName
0 Jet NaN
1 Edward Lach
人到中年有点甜
相关分类