Print Unique elements of list

Code
l=1,2,3,4,1,2,34,4
for i in set(l):
  print(i)

Output:
1
2
3
4
34

Comments