Page 328 - COPA - TT - Marathi
P. 328
आउटपुट: index of p is:6
उलट के ल्ानंतर ValueError:’z’isnotinlist
[‘n’,’o’,’h’,’t’,’y’,’p’] (insert()
count() python insert() मेथड्स मध्े टलस्ट तील स्पेटसफाइड टनदटेशांकावर
python count() मेथड्स मध्े टलस्ट मध्े एटलमेंट टकती वेळा टदसला ते एटलमेंट समाटवष् के ला जातो. पटहला आग्ययू्चमेंट्स हा एटलमेंटर्ी इंडेक्स
दाखवते. टलस्ट मध्े एटलमेंट सबन्स्थथत नसल्ास, ते 0 टमळवते. आहे ज्ाच्ा आधी एटलमेंट इन्सट्च यर्ा आहे.
धसन्ेक्स :
धसन्ेक्स :
list.count(item) list.insert(i,x)
i: कोित्ा एटलमेंटवर इंडेक्स टाकला जाईल.
उदाहरण:
x : एटलमेंट इन्सट्च यर्ा आहे.
num=[1,2,3,4,3,2,2,1,3,4,5,7,8]
cnt=num.count(2) उदाहरण:
print(“Count of 2 is:”,cnt) num=[10,20,30,40,50]
num.insert(4,60)
cnt=num.count(10)
print(“Count of 10 is:”,cnt) print(“updated list is :”,num)
num.insert(7,70)
आउटपुट:
print(“updated list is :”,num)
2 र्ी नंबर आहे:3
10 र्ी नंबर : 0 आउटपुट:
updated listis:[10,20,30,40,60,50]
index()
updated listis:[10,20,30,40,60,50,70]
पायथन इंडेक्स () मेथड्स मध्े पास के लेल्ा एटलमेंटर्ी इंडेक्स टमळते.
ही मेथड्स एक आग्ययू्चमेंट्स घेते आटि त्ार्ी इंडेक्स टमळवते. एटलमेंट pop()
सबन्स्थथत नसल्ास, ते व्ॅल्ु रिुटी वाढवते. टलस्ट मध्े डुन्सलिके ट एटलमेंट python pop() मध्े एटलमेंट टलस्ट मधयून स्पेटसफाइड टनदटेशांकावर
असल्ास, ते प्थम आलेल्ा एटलमेंटर्ी इंडेक्स टमळवते.
सबन्स्थथत असलेला एटलमेंट काढयू न टाकतो. हे पॉप के लेले एटलमेंट परत
या मेथड्स मध्े आिखी दोन पया्चयी पॅरामीटस्च स्टाट्च आटि एं ड लागतात करते.
जे एका मया्चदेत इंडेक्स सर््च ण्ासाठी वापरले जातात.
धसन्ेक्स
धसन्ेक्स : list.pop([i])
list.index(x[, start[, end]])
उदाहरण:
उदाहरण:
num=[10,20,30,40,50]
lang =[‘p’,’y’,’t’,’h’,’o’,’n’,’p’,’r’,’o’,’g’,’r’,’a’,’m’] num.pop()
print(“index of t is:”,lang.index(‘t’))
print(“updated list is :”,num)
print(“index of p is:”,lang.index(‘p’))
num.pop(2)
print(“index of p is:”,lang.index(‘p’,3,10)) print(“updated list is :”,num)
print(“index of p is:”,lang.index(‘z’))
num.pop(7)
आउटपुट:
print(“updated list is :”,num)
index of t is:2
आउटपुट:
index of p is:0
updated listis:[10,20,30,40]
298 IT & ITES : COPA (NSQF -उजळणी 2022) एक्सरसाईस साठी संबंधित धिअरी 1.41.8&9