We'll count the number of five-star ratings in ratings by coding a new variable and using .count(5).
ratings
.count(5)
Make sure to pick five_star followed by = and then ratings, count, 5.
five_star
=
count
5