Qual o valor da variável resultante do programa Python 3 aba...
Qual o valor da variável resultante do programa Python 3 abaixo?
a = list()
b = list()
c = list()
a.extend(i for i in range(7, 0, -2))
b.extend(i for i in range(1, 4))
c.extend(i for i in range(0, 5, -1))
resultado = list()
resultado.extend(i for i in a if i not in (b+c) and i not in resultado)
resultado.extend(i for i in b if i not in (a+c) and i not in resultado)
resultado.extend(i for i in c if i not in (a+b) and i not in resultado)