Been googling for a while but can't seem to find answer that I can get to work.
I want this list -
sws = ['C6', 'A4', 'B8', 'A8', 'B11', 'C3', 'C5']
to be sorted to -
sws = ['A4', 'A8', 'B8', 'B11', 'C3', 'C5', 'C6']
I can get close but I can't seem to get B11 and B8 the right way round ie. B11 always comes before B8 in my list.
Thanks