I just start learning about adding items in set (Python), but then I don't understand why this happens
thisset = {"apple", "banana", "cherry"}
thisset.update("durian", "mango", "orange")
print(thisset)
and I get the output like this:
{'i', 'o', 'r', 'm', 'cherry', 'n', 'u', 'a', 'apple', 'banana', 'd', 'e', 'g'}
What I want is put the other 3 items into the set, what else I need to add/change?