Caesar_Ciphers(凯撒移位)python描述
#encryption code from #http://thelivingpearl.com/2013/06/03/caesar-ciphers-in-#python/
import sysdef main(argv):
if (len(sys.argv) != 2):
sys.exit('Usage: sub.py <k>') plaintext = list(
原创
2016-04-24 18:52:30 ·
1804 阅读 ·
0 评论