Answers for "sort list numerically python"

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']
Posted by: Guest on September-28-2020
0

python how to sort a list alphabetically

print(sorted(("snow", "glacier", "iceberg")))
Posted by: Guest on January-09-2020

Code answers related to "sort list numerically python"

Python Answers by Framework

Browse Popular Code Answers by Language