how to sort list of string based on len python code example
Example 1: sort a list by length python
#Input
def sort():
lst = [orange, ant, phone, banana, notebook)
lst2 = sorted(lst, key=len)
return lst2
#Output : [ant, phone, banana, orange, notebook)
Example 2: 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']