Source Code:
(back to article)
my_set = set(["apple", "banana", "cherry"]) for x in my_set: print(x)
Result:
Report an issue