pandas如何删除A列和C列中数据相同的行,如第0行和第5行中A列和C列的值相同,那么将这两行删除。
df[-(df['A']==df['C'])]
https://blog.csdn.net/lost0910/article/details/104669694/