在这里,我们使用一个用户输入数组,并且必须根据元素的长度对列表进行排序。在这里,我们使用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']