Here is my input:
a = ['Dr1', 'Dr10', 'Dr11', 'Dr12','Dr2', 'Dr3']
a.sort()
print(a)
Here is the current output:
['Dr1', 'Dr10', 'Dr11', 'Dr12', 'Dr2', 'Dr3']
Here is the output I would like generated instead:
['Dr1', 'Dr2', 'Dr3', 'Dr10', 'Dr11', 'Dr12']