# remove duplicate from given_list using list comprehension res = [] [res.append(x) for x in given_list if x not in res]