sort mixed values fixed with str



examples/lists/sort_mixed_with_str.py
mixed = [100, 'foo', 42, 'bar']
print(mixed)

mixed.sort(key=str)
print(mixed)