Python程序根据元素的长度对列表进行排序?

在这里,我们使用一个用户输入数组,并且必须根据元素的长度对列表进行排序。在这里,我们使用Python内置函数sorted()

示例

Input::[“mona”,”pp”,”aaa”]

Lengths are [4,2,3]

So, the sorted array should be [2,3,4]

Output::[“pp”,”aaa”,”mona”]

算法

Step 1: Input list element.

Step 2: apply sorted (A,len) function.

范例程式码

# To sort a list 

def sortedlist(A):

   newlist = sorted(A, key=len)

   return newlist

# Driver code

A=list()

n=int(input("Enter the size of the List ::"))

print("Enter the Element ::")

for i in range(int(n)):

   k=input("")

   A.append(k)

print("SORTED LIST ::>",sortedlist(A))

输出结果

Enter the size of the List ::5

Enter the Element ::

mona

gulli

adwaita

aadrika

pinki

SORTED LIST ::> ['mona', 'gulli', 'pinki', 'adwaita', 'aadrika']

以上是 Python程序根据元素的长度对列表进行排序? 的全部内容, 来源链接: utcz.com/z/335158.html

回到顶部