I am having an issue with duplicate items in a list in python.
For example I have this list
i = ['hello', 'hi', 'bye', 'welcome', 'hi', 'bye']
I want to print every item once, even if it's duplicated print it once.
Is there any way to do it in python?