凯撒密码移位python
摘要:#!/usr/bin/python'''凯撒密码'''a="gmbhqwertghjkcvbzn"s=[""]*len(a)for j in range(26): for i in range(len(a)): s[i]=chr(ord(a[i])-j) print "".join(s)
阅读全文
posted @ 2017-12-13 14:46
posted @ 2017-12-13 14:46