6、Ordinary keyboard
生活随笔
收集整理的這篇文章主要介紹了
6、Ordinary keyboard
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
#### 題目239Ordinary keyboard(CRYPTO易知識點 Go) ########
def decry(cipher):
? ? strs1 = "asdfghjkl;qwertyuiop!@#$%^&*()-+"
? ? strs2 = "zxcvbnm,./asdfghjkl;qwertyuiop{}"
? ? dir = dict(zip(strs1,strs2))
? ? num = "0123456789"
? ? res = ""
? ? for i in cipher:
? ? ? ? if i not in num:
? ? ? ? ? ? res += dir[chr(ord(i)-1)]
? ? ? ? else:
? ? ? ? ? ? res += i
?
? ? return res
?
?
def main():
? ? cipher = "spru.r5sf3h7660h7394e169699hffe0s0h$4,"
? ? print(decry(cipher))
?
?
if __name__ == '__main__':
? ? main()
總結
以上是生活随笔為你收集整理的6、Ordinary keyboard的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 为什么苹果日历不能设置日程_苹果日历怎么
- 下一篇: 读论文:BERT Pre-trainin