I have a dictionary that I\'ve converted to a list so I can sort by the first item. The key in the dictionary is a string (of numbers), the value is an integer which is mai
That's because they're strings.
key=lambda x: int(x[0])