按字母顺序对单词进行排序的Python程序
给定一个输入字符串,我们的任务是编写一个Python程序来按字母顺序对字符串中出现的单词进行排序。
例子:
Input : “geeks for Geeks”
Output : “for geeks geeks”
Input : “the Quick brown fox jumPs over the lazY Dog”
Output : “brown dog fox jumps lazy over quick the the”
方法 1:使用 sorted()
sorted() 是Python的一个预定义函数,它返回任何特定序列的排序列表。
Python3
Python3
输出:
brown dog fox jumps lazy over quick the the
方法 2:使用 sort()
Python list sort()函数可用于按升序、降序或用户定义的顺序对列表进行排序。
蟒蛇3
输出:
for geeks geeks