>>> a = ['7','30','41','14','39','42']
>>> a.sort()
>>> a
['14', '30', '39', '41', '42', '7']
was not it supposed to print the following??
>>> a
['7', '14', '30', '39', '41', '42']
>>> a = ['7','30','41','14','39','42']
>>> a.sort()
>>> a
['14', '30', '39', '41', '42', '7']
was not it supposed to print the following??
>>> a
['7', '14', '30', '39', '41', '42']