Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

एक नए वर्ण सेट में बदलने के लिए पायथन में ज़िप फ़ंक्शन।

26 अक्षरों के कैरेक्टर सेट को देखते हुए, यहां हम एक नए कैरेक्टर सेट का उपयोग कर रहे हैं। और एक अन्य वर्ण सेट जैसे वर्णमाला सेट (ए, बी, सी ......... जेड), तो हमारा काम नए वर्ण सेट और उस वर्णमाला सेट के बीच संबंध बनाना है।

उदाहरण

New character set: qwertyuiopasdfghjklzxcvbnm
Input: "wwmm"
Output: bbzy

एल्गोरिदम

Step 1: Given a new character set and input the string to make a relation.
Step 2: and the original character set also given below.
Step 3: Create a dictionary, we use here map technique, we map the English character set and new given character set, zip() does it for us. Both character sets are the map, here we match each character of given character set with each character of new charset sequentially.
Step 4: iterate through the original string and get characters of an original character set.
Step 5: join characters without space to get new string.

उदाहरण कोड

# Function to change string to a new character 
defnewString(cs,n): 
   ori = 'abcdefghijklmnopqrstuvwxyz'
   newchar = dict(zip(cs,ori)) 
   newstr = [newchar[chr] for chr in n]  
   print (''.join(newstr)) 
# Driver program 
if __name__ == "__main__": 
   newcharSet = 'qwertyuiopasdfghjklzxcvbnm'
   input = 'wwmn'
   newString(newcharSet,input) 

आउटपुट

bbzy

  1. issubset () पायथन में फ़ंक्शन

    इस लेख में, हम पायथन स्टैंडर्ड लाइब्रेरी में उपलब्ध issubset () फ़ंक्शन के कार्यान्वयन और उपयोग के बारे में जानेंगे। issubset() विधि बूलियन ट्रू लौटाती है जब एक सेट के सभी तत्व दूसरे सेट में मौजूद होते हैं (एक तर्क के रूप में पारित) अन्यथा, यह बूलियन गलत देता है। नीचे दिए गए चित्र में B, A का एक उ

  1. इंटरसेक्शन () फ़ंक्शन पायथन

    इस लेख में, हम चौराहे () फ़ंक्शन के बारे में जानेंगे जो किसी दिए गए सेट पर किया जा सकता है। गणित के अनुसार प्रतिच्छेदन का अर्थ है दो समुच्चयों से उभयनिष्ठ तत्वों का पता लगाना। सिंटैक्स <set name>.intersection(<set a1> <set a2> ……..) रिटर्न वैल्यू सेट में सामान्य त

  1. पायथन में सभी फ़ंक्शन तर्कों को लोअरकेस में कैसे बदलें?

    निम्न कोड दिए गए फ़ंक्शन तर्कों को लोअरकेस में बदल देगा। उदाहरण #कार्यक्रम तर्कों की सूची के लोअरकेस को प्रिंट करने के लिए कार्यक्रम इंस्पेक्टडेफ फू (एआरजी 1, एआरजी 2) आयात करें:पासलिस्ट 1 =निरीक्षण। getargspec (फू) [0] सूची 1 =[आइटम। सूची में आइटम के लिए कम()] प्रिंट सूची 1 आउटपुट [arg1, arg2]