What is the best way of creating an alphabetically sorted list in Python?
It is also worth noting the sorted() function:
for x in sorted(list): print x
This returns a new, sorted version of a list without changing the original list.