Question 1
How do we find (using Python) all the possible values of categories inside a Pandas data-frame column named ‘book’? The name of the Pandas data-frame is data_df.
data_df.book.unique()
data_df.book.category_name()
data_df['book'].distinct()
data_df['book'].unique()
