It's common to run into datasets which contain duplicate rows, either as a result of dirty data or some preliminary work on the dataset. Pandas has a method specifically for purging these rows calleddrop_duplicates(). When we rundrop_duplicates()on a DataFrame without passing any arguments, ...