song1 = ["love", "is", "all", "around", "me"]
song2 = ["you", "is", "all", "around", "you"]

answer = False
count = 0

for i in range(len(song1)):
    if song1[i] == song2[i]:
        count += 1
    if count >= 3:
        answer = True

print(answer)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: