Comment imprimer le tableau en python avec une dublication propre
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)