python sort list numerically code example
Example 1: python sort list of strings numerically
# Example usage:
your_list = ['cmd1','cmd10', 'cmd111', 'cmd50', 'cmd99']
your_list.sort(key=lambda x: int(x[3:]))
print(your_list)
--> ['cmd1', 'cmd10', 'cmd50', 'cmd99', 'cmd111']
Example 2: python how to sort a list alphabetically
print(sorted(("snow", "glacier", "iceberg")))