इस ट्यूटोरियल में, हम एक प्रोग्राम लिखने जा रहे हैं जो दो सूचियों को मर्ज करता है और परिणामी सूची को क्रमबद्ध क्रम में प्रिंट करता है। आइए कुछ उदाहरण देखें।
Input: list_1 = [1, 3, 2, 0, 3] list_2 = [20, 10, 23, 43, 56, -1] Output: [-1, 0, 1, 2, 3, 3, 10, 20, 23, 43, 56]
Input: list_1 = ["hafeez", "aslan"] list_2 = ["abc", "kareem", "b"] Output: ["abc", "aslan", "b", "hafeez", "kareem"]
आइए निम्नलिखित चरणों के साथ कोड लिखने का प्रयास करें।
एल्गोरिदम
1. Initialize the lists. 2. Concatenate the two lists using + operator and store the result in a new variable. 3. Sort the resultant list with sort() method of the list. 4. Print the sorted list.
कोड देखें।
उदाहरण
## initializing the lists list_1 = [1, 3, 2, 0, 3] list_2 = [20, 10, 23, 43, 56, -1] ## concatenating two lists new_list = list_1 + list_2 ## soring the new_list with sort() method new_list.sort() ## printing the sorted list print(new_list)
आउटपुट
यदि आप उपरोक्त प्रोग्राम चलाते हैं, तो आपको निम्न आउटपुट मिलेगा।
[-1, 0, 1, 2, 3, 3, 10, 20, 23, 43, 56]
हम एक ही प्रोग्राम को विभिन्न सूचियों के साथ क्रियान्वित कर रहे हैं।
उदाहरण
## initializing the lists list_1 = ["hafeez", "aslan"] list_2 = ["abc", "kareem", "b"] ## concatenating two lists new_list = list_1 + list_2 ## soring the new_list with sort() method new_list.sort() ## printing the sorted list print(new_list)
आउटपुट
यदि आप उपरोक्त प्रोग्राम चलाते हैं, तो आपको निम्न आउटपुट मिलेगा।
['abc', 'aslan', 'b', 'hafeez', 'kareem']
निष्कर्ष
यदि आपको ट्यूटोरियल के बारे में कोई संदेह है, तो उनका टिप्पणी अनुभाग में उल्लेख करें।