Como impressão Array em Python com Dublicação Limpa
res = []
for i in test_list:
if i not in res:
res.append(i)
Mostafa Rawash
res = []
for i in test_list:
if i not in res:
res.append(i)