''' we can convert the list to set and then back to list''' a=[1,1,2,3,4,5,6,6,7] '''b=(list(set(a))) # will have only unique elemenets'''