创建集合

  1. thisset = {"apple", "banana", "cherry"}
  2. print(thisset)
  3.  
  4. # Note: the set list is unordered, meaning: the items will appear in a random order.
  5.  
  6. # Refresh this page to see the change in the result.