题解 | #字符串加密#

字符串加密

https://www.nowcoder.com/practice/e4af1fe682b54459b2a211df91a91cf3

import sys

key = input()
password=input()
wordstr="A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
wordlist=wordstr.split(" ")
wordlist=[chr(ord(it)-ord('A')+ord('a')) for it in wordlist]
new_wordlist=[]
for it in key:
    if it not in new_wordlist:
        new_wordlist.append(it)
for it in wordlist:
    if it not in new_wordlist:
        new_wordlist.append(it)
result=[]
for it in password:
        result.append(new_wordlist[ord(it)-ord('a')])
print(''.join(result))

全部评论

相关推荐

鬼迹人途:你去投一投尚游游戏,服务器一面,第一个图算法,做完了给你一个策略题,你给出方案他就提出低概率问题,答不上当场给你挂
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务