split() Method in Python – ये Python का एक बहुत ही उपयोगी String Method है, जिसके माध्यम से हम किसी String में किसी Specific Delimiter को Specify करके Multiple Substring को एक List के रूप में Retrieve कर सकते हैं जबकि कोई भी Delimiter Specify न करने पर Default रूप से Blank Space Character को Delimiter की तरह Use करते हुए ये Method String में Exist सभी Words की एक Comma Separated List Return कर देता है। इतना ही नहीं Delimiter के रूप में हम इस Function में एक Single Character भी Pass कर सकते हैं और पूरा शब्द भी। इस Method की कार्यप्रणाली को निम्न Example द्वारा आसानी से समझा जा सकता है-
[code] FileName: splitMethod.py str1 = "KRISHNA KUMAR YADAV" print("Actual String:", str1) print("Apply split() Method") lstWords = str1.split() print("List of Split Words with Default Delimiter") print(lstWords) print() str1 = "KRISHNA,MURARI,BIHARI,SHYAM,MOHAN" print("Actual String:", str1) lstWords = str1.split(',') print("List of Split Words with Comma Delimiter") print(lstWords) Output Actual String: KRISHNA KUMAR YADAV Apply split() Method List of Split Words with Default Delimiter ['KRISHNA', 'KUMAR', 'YADAV'] Actual String: KRISHNA,MURARI,BIHARI,SHYAM,MOHAN List of Split Words with Comma Delimiter ['KRISHNA', 'MURARI', 'BIHARI', 'SHYAM', 'MOHAN'] [/code]
ये Article इस वेबसाईट पर Selling हेतु उपलब्ध EBook Python in Hindi से लिया गया है। इसलिए यदि ये Article आपके लिए उपयोगी है, तो निश्चित रूप से ये EBook भी आपके लिए काफी उपयोगी साबित होगी।
Python in Hindi | Page: 602 | Format: PDF