O que é exibido quando o seguinte código Python é compilado e executado?
x = [0, 9, 0, 1, 2, 4, 6]
y = [4, 1, 9, 5, 6]
z = [ ]
for i in x:
if i in y and i not in z :
z.append(i)
h = len(z) - 1
t = ''
for i in z:
t = t + '{' + str(h) + '}'
h -= 1
print(t.format(*z))