既に解決してるだろうけどw

>>650
a=[1,2,3,4,5]
b=[1,2,3,5,4]

c=list(zip(a,b))

d=0
for i in c:
____if int(i[0])==int(i[1]):
________d+=1

print(d/len(c)*100)