python:实现按字母顺序对用户提供的字符串中的单词进行排序
my_str = "Hello this Is an Example With cased letters"
words = my_str.split()
# sort the list
words.sort()
# display the sorted words
print("The sorted words are:"
my_str = "Hello this Is an Example With cased letters"
words = my_str.split()
# sort the list
words.sort()
# display the sorted words
print("The sorted words are:"