I have created mylist that reads out:
[('GCK', '3e-12'), ('ist', '6e-30'), ('iso', '5e-15'), ('tig', '5e-77')]
when I run the sort function:
mylist.sort(key=operator.itemgetter(1))
it sorts the list on the 2nd column, but only by the 1st integer
[('GCKDGN101ANI4S', '3e-12'), ('isotig13037', '5e-15'), ('isotig14607', '5e-77'), ('isotig03156', '6e-30')]
How do I get it to sort by the entire number in the 2nd column so that the order is:
[('GCK', '3e-12'), ('ist', '5e-15'), ('tig', '6e-30'), ('iso', '5e-77')]