3-3-3-11. Manipulate a DataFrame

book_r.py solution.py Level Up From the DataFrame above can you now pick all the books that had a rating of 5?Hint – You can do this in just one line of code, by using pandas.DataFrame.any. Try to do it yourself first, you’ll find the answer below: pandas.DataFrame.any DataFrame.any(axis=0, bool_only=None, skipna=True, level=None, **kwargs)Return whether any element is True, potentially over an … Read more