list = ["a9", "a11", "a6", "a2", "a4", "a12", "a10", "a15", "a17"]
From this list I would want to sort the list so that the numbers behind 'a' is in numerical order. Is there a simple way to do this?
output wanted:
list = ["a2", "a4", "a6", "a9", "a10", "a11", "a12", "a15", "a17"]