Is there a way to delete rows based on values . For example
df
ColA   ColB
A      1
B      2    
A      3
Expected output (Basically i know we can delete based on row number. But is there way to way to delete based on values ("A", 3)
df
ColA   ColB
A      1
B      2    
 
     
     
    