16. Show the unique values that we have in the ‘Continent’ column. Then show the number of unique values that have in a column. code example
Example: pandas distinct
>gapminder['continent'].unique()
array(['Asia', 'Europe', 'Africa', 'Americas', 'Oceania'], dtype=object)