i am trying to write a code that filters a json file into two columns using Pandas in python. after the filter has been done, i want to create a loop that would add the items in the column to be added to a list called review
import pandas as pd
reviews = []
df = pd.read_json('Books_small.json', lines=True)
data = df[['reviewText', 'overall']]
for b in data:
reviews.append(b)
print(len(reviews))