题解 | #字符串加密#

字符串加密

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

# 大写小写都加上去了
i1 = input()
i2 = input()

lMap = [chr(ord("a")+i) for i in range(26) ]
cMap = [chr(ord("A")+i) for i in range(26) ]
lList = []
cList = []
for i in i1:
    if i in lMap:
        lList.append(i)
        lMap.remove(i)
    elif i in cMap:
        cMap.remove(i)
        cList.append(i)

lList += lMap
cList += cMap
outChar = ""
for i in i2:
    if i in lList:
        outChar += lList[ord(i) - ord("a")]
    elif i in cList:
        outChar += cList[ord(i) - ord("A")]
    else:
        outChar += i
print(outChar)

全部评论

相关推荐

11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
河和静子:如果大专也能好过的话,我寒窗苦读几年的书不是白读了?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务