Python penghitung positif

# Positive Counter
pcount = 0
test_row =reviews['clean_review'][0]
for i in pwords.split():
    for j in test_row.split():
        if i == j:
            pcount+=1
Clean Curlew