What I learnt from python None :
None is frequently used to represent the absence of a value
When i put in a list and sorted with numbers and string. I got the following result, which means it is the smallest number ?
Reverse:
>>> sorted([1, 2, None, 4.5, (-sys.maxint - 1), (sys.maxint - 1), 'abc'], reverse=True)
['abc', 9223372036854775806, 4.5, 2, 1, -9223372036854775808, None]
>>>
Normal sort:
>>> sorted([1, 2, None, 4.5, (-sys.maxint - 1), (sys.maxint - 1), 'abc'])
[None, -9223372036854775808, 1, 2, 4.5, 9223372036854775806, 'abc']
>>>
How python sorted function is working with None ?