Use the .loc method, select the column rating for the rows of df where company_location equals "U.K."
Store it in a variable called uk_ratings.
uk_ratings = choco_df.loc[:, "rating"]
if company_location == "U.K." :
print(uk_ratings)
I am used to using SQL not Python, so a little stuck, need help in where I am going one as this doesnt runn