👉 tups is a Python function that takes an iterable (like a list or tuple) as input and returns a new list containing only the unique elements of the original iterable, preserving their order. It uses a set to keep track of seen elements for efficient lookup. Here's how you can use it: ```python def tups(input_list): return list(set(input_list)) ``` This function works by converting the input list into a set, which automatically removes duplicates since sets only allow unique