Dataframe Liczba unikalnych wierszy

1
# get the unique values (rows) by retaining last row
2
df.drop_duplicates(keep='last')
Fantastic Fish