What is the best way of creating an alphabetically sorted list in Python?
Or maybe:
names = ['Jasmine', 'Alberto', 'Ross', 'dig-dog'] print ("The solution for this is about this names being sorted:",sorted(names, key=lambda name:name.lower()))