এই নিবন্ধে আমরা খুঁজে বের করব যে প্রদত্ত তালিকার সমস্ত টিপল একই দৈর্ঘ্যের কিনা৷
৷লেন দিয়ে
আমরা len ফাংশন ব্যবহার করব এবং এর ফলাফলকে একটি প্রদত্ত মানের সাথে তুলনা করব যা আমরা যাচাই করছি। যদি মানগুলি সমান হয় তবে আমরা তাদের একই দৈর্ঘ্য হিসাবে বিবেচনা করি অন্যথায় নয়৷
উদাহরণ
listA = [('Mon', '2 pm', 'Physics'), ('Tue', '11 am','Maths')] # printing print("Given list of tuples:\n", listA) # check length k = 3 res = 1 # Iteration for tuple in listA: if len(tuple) != k: res = 0 break # Checking if res is true if res: print("Each tuple has same length") else: print("All tuples are not of same length")
আউটপুট
উপরের কোডটি চালানো আমাদের নিম্নলিখিত ফলাফল দেয় -
Given list of tuples: [('Mon', '2 pm', 'Physics'), ('Tue', '11 am', 'Maths')] Each tuple has same length
সকল এবং লেন সহ
আমরা সমস্ত ফাংশনের সাথে লেন ফাংশন সারিবদ্ধভাবে মামলা করি এবং তালিকায় উপস্থিত প্রতিটি টিপলের মাধ্যমে পুনরাবৃত্তি করার জন্য একটি লুপ ব্যবহার করি৷
উদাহরণ
listA = [('Mon', '2 pm', 'Physics'), ('Tue', '11 am','Maths')] # printing print("Given list of tuples:\n", listA) # check length k = 3 res=(all(len(elem) == k for elem in listA)) # Checking if res is true if res: print("Each tuple has same length") else: print("All tuples are not of same length")
আউটপুট
উপরের কোডটি চালানো আমাদের নিম্নলিখিত ফলাফল দেয় -
Given list of tuples: [('Mon', '2 pm', 'Physics'), ('Tue', '11 am', 'Maths')] Each tuple has same length