📌  相关文章
📜  Python 按字母顺序对单词排序

📅  最后修改于: 2020-10-30 01:26:07             🧑  作者: Mango

Python程序可按字母顺序对单词进行排序

排序:

排序是安排的过程。它以特定格式系统地排列数据。它遵循一些算法对数据进行排序。

请参阅以下示例:

my_str = input("Enter a string: ")
# breakdown the string into a list of words
words = my_str.split()
# sort the list
words.sort()
# display the sorted words
for word in words:
   print(word)

输出: