Bagaimana array cetak dalam python dengan dublifikasi bersih

res = []
for i in test_list:
    if i not in res:
        res.append(i)
Mostafa Rawash