Is a blog about python programming language. You can see my work with python programming language, tutorials and news.
>>> my_list = [1,2,3,22,33,11,33,'a','b','c','a'] >>> my_list = list(set(my_list)) >>> print my_list ['a', 1, 2, 3, 33, 11, 'c', 'b', 22]