I have a list of lists:
[[12, \'tall\', \'blue\', 1], [2, \'short\', \'red\', 9], [4, \'tall\', \'blue\', 13]]
If I wanted to sort by one e
There is a operator < between lists e.g.:
[12, 'tall', 'blue', 1] < [4, 'tall', 'blue', 13]
will give
False