object showing in alphabetical order python code example
Example 1: sort list alphabetically python
my_list = ['pera', 'apple', 'orange', 'grape']
my_list.sort() # ['apple', 'grape', 'orange', 'pera']
Example 2: how to sort a list descending python
# defning A as a list
A.sort(reverse = True)