i have a nested list that needs to be sorted alphabetic on index 1
example:
some_list = [
[85, u'Bounty Prizes'],
[34, u'Agent Mission Time Bonus Reward'],
[46, u'Brokers Fee'],
[83, u'Contract Reward Deposited'],
[17, u'Bounty Prize'],
[1, u'Player Trading'],
[15, u'Repair Bill'],
[10, u'Player Donation']
]
sorted(some_list)
but this sorts on index 0. how can I sort on the second item?