The job is to return a list back as a unique list. However my code doesn't work correctly.
def unique_list(lst):
d=(lst)
print(d)
When I enter unique_list([1,1,1,1,2,2,3,3,3,3,4,5])
, it returns the same thing. But when I do print(d) on a new cell, it returns the unique numbers. I'm just confused why.