类似于凯撒密码一样的加密

# *-* coding=utf-8 *-*

import string

intab = string.lowercase
outtab = 'qwertyuiopasdfghjklzxcvbnm'

old = 'kiqlwtfcqgnsoo'.lower()

new = old.translate(string.maketrans(intab, outtab))
print new

 

相关文章:

  • 2022-12-23
  • 2021-05-18
  • 2022-12-23
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-09
  • 2021-10-24
相关资源
相似解决方案