What is the best way of creating an alphabetically sorted list in Python?
Suppose s = "ZWzaAd"
s = "ZWzaAd"
To sort above string the simple solution will be below one.
print ''.join(sorted(s))