order list by alphabet python code example
Example 1: sort list alphabetically python
my_list = ['pera', 'apple', 'orange', 'grape']
my_list.sort() # ['apple', 'grape', 'orange', 'pera']
Example 2: python how to sort a list alphabetically
print(sorted(("snow", "glacier", "iceberg")))