首页 > 代码库 > 【python密码学编程】5.反转加密法
【python密码学编程】5.反转加密法
1 #Reverse Cipher 2 message = ‘there can keep a secret,if two of them are dead.‘ 3 translated = ‘‘ 4 i = len(message)-1 5 while i >= 0: 6 translated = translated + message[i] 7 i = i-1 8 print translated
>>>C:\Python27\python.exe E:/Python/密码学编程/5.py
.daed era meht fo owt fi,terces a peek nac ereht
Process finished with exit code 0
【python密码学编程】5.反转加密法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。