Python中的Zip函数可更改为新的字符集。
给定一个26个字母的字符集,这里我们使用一个新的字符集。还有另一个字符集,就像字母集(a,b,c........z)一样,那么我们的任务是在新字符集和该字母集之间建立关系。
示例
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
热门推荐
10 年终企业送祝福语简短
11 新婚祝福语有趣文案简短
12 法考面试祝福语简短
13 六一祝福语简短感动女生
14 祝贺开业文案祝福语简短
15 大寿爸爸祝福语简短英文
16 结婚对白誓言简短祝福语
17 婚礼明星的祝福语简短
18 朋友入伙搬家祝福语简短