With a given list L of integers, write a program to print this list L after removing all duplicate values with original order preserved. python code example
Example: python remove duplicates from list
# remove duplicate from given_list using list comprehension
res = []
[res.append(x) for x in given_list if x not in res]