ที่นี่เราใช้อาร์เรย์อินพุตของผู้ใช้หนึ่งราย และเราต้องจัดเรียงรายการตามความยาวขององค์ประกอบ ที่นี่เราใช้ฟังก์ชัน Python inbuilt 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']