I have 1 dataframe and I want to select all rows that don't have duplicates
My df:
Name Age
Jp 4
Anna 15
Jp 4
John 10
My output should be :
Name Age
Anna 15
John 10
I am using Pandas dataframe
any suggestions?