Wondering if there is a simple way to reorder characters in a string in alphabet order?
Saying, if "hello", want it to be "ehllo"? Tried sort method does not exist. If anyone have any great ideas, it will be great.
a = 'hello'
print a.sort()
thanks in advance, Lin