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