Python set sorted function is one of the set methods used to sort the given set items in ascending order or Descending order. The syntax behind this set sort function is:
sorted(set_Name, reverse = True
set sorted function example
sortFruitSet = {'mango', 'kiwi', 'apple', 'orange', 'banana'}
print("\nOld Items = ", sortFruitSet)
print("Sorted List = ", sorted(sortFruitSet))
Old Items = {'apple', 'kiwi', 'orange', 'mango', 'banana'}
Sorted List = ['apple', 'banana', 'kiwi', 'mango', 'orange']
Example 2.
TIP: Please refer to the Python set article available on our Python tutorial page to understand the creation of sets.
sortFruitSet = {'mango', 'kiwi', 'apple', 'orange', 'banana'}
print("\nOld Set Items = ", sortFruitSet)
print("Sorted List from Set = ", sorted(sortFruitSet))

TIP: Please refer to the Python set sort functions from the list of available Python set functions.