set
thisset = {"apple", "banana", "cherry", True, 1, 2}
print("The length of thisset = ", len(thisset),"\n")
for this in thisset:
print(this)
INFO
thisset = {"apple", "banana", "cherry", True, 1, 2}
print("The length of thisset = ", len(thisset),"\n")
for this in thisset:
print(this)