get not repeated elements in a list django code example
Example: python remove duplicates from list
bad_list = ["hi", 1, 2, 2, 3, 5, "hi", "hi"]
good_list = list(set(bad_list))
bad_list = ["hi", 1, 2, 2, 3, 5, "hi", "hi"]
good_list = list(set(bad_list))