एक सूची एक संग्रह है जो आदेशित और परिवर्तनशील है। पायथन में सूचियाँ वर्गाकार कोष्ठकों के साथ लिखी जाती हैं। आप इंडेक्स नंबर का हवाला देकर सूची आइटम तक पहुंचते हैं। ऋणात्मक अनुक्रमण का अर्थ है अंत से प्रारंभ, -1 अंतिम आइटम को संदर्भित करता है। आप यह निर्दिष्ट करके अनुक्रमित की एक श्रेणी निर्दिष्ट कर सकते हैं कि कहां से शुरू करना है और कहां सीमा को समाप्त करना है। एक सीमा निर्दिष्ट करते समय, वापसी मूल्य निर्दिष्ट वस्तुओं के साथ एक नई सूची होगी।
उदाहरण
# triplets from list of words. # List of word initialization list_of_words = ['I', 'am', 'Vishesh', 'and', 'I', 'like', 'Python', 'programming'] # Using list comprehension List = [list_of_words[i:i + 3] for i in range(len(list_of_words) - 2)] # printing list print(List) # List of word initialization list_of_words = ['I', 'am', 'Vishesh', 'and', 'I', 'like', 'Python', 'programming'] # Output list initialization out = [] # Finding length of list length = len(list_of_words) # Using iteration for z in range(0, length-2): # Creating a temp list to add 3 words temp = [] temp.append(list_of_words[z]) temp.append(list_of_words[z + 1]) temp.append(list_of_words[z + 2]) out.append(temp) # printing output print(out)
आउटपुट
[['I', 'am', 'Vishesh'], ['am', 'Vishesh', 'and'], ['Vishesh', 'and', 'I'], ['and', 'I', 'like'], ['I', 'like', 'Python'], ['like', 'Python', 'programming']] [['I', 'am', 'Vishesh'], ['am', 'Vishesh', 'and'], ['Vishesh', 'and', 'I'], ['and', 'I', 'like'], ['I', 'like', 'Python'], ['like', 'Python', 'programming']]