17 Python
What is the most appropriate Python container to use to find the distinct elements in a sequence.
Group of answer choices
List
Tuple
Dict
defaultdict
Set

Set
Set removes the duplicates.
so, we can add items to a set and finally printing the set prints only the distinct elements in the sequence
17 Python What is the most appropriate Python container to use to find the distinct elements...