Python Caesar cypher

时间:2013-03-10 20:49:34

标签: python dictionary

我正在努力制作一个可以将凯撒塞(Caesar Cypher)用于写信的字典。 我需要它在一个字典中为上部和下部,但无法计算如何将两者都放入一个字典。

import string

def Coder(shift):

    alpha = string.ascii_lowercase
    ALPHA = string.ascii_uppercase
    if shift in range(0,26):

        return dict(zip(ALPHA, ALPHA[shift:] + ALPHA[0:shift])), dict(zip(alpha, alpha[shift:] + alpha[0:shift]))

3 个答案:

答案 0 :(得分:1)

如果您不熟悉编程,请避免尝试“在一条线上做所有事情”。

string.index(substring)在字符串中查找子字符串的位置。

a%b取余数除以b。

string.upper()返回字符串的大写版本。

了解这一点,你应该能够理解这个程序中的每一行:

import string
translation = {}
shift = 5
alphabet = string.ascii_lowercase
for letter in alphabet:
    position = alphabet.index( letter )
    new_position = (position + shift) % len( alphabet )
    translation[ letter ] = alphabet[ new_position ]
    translation[ letter.upper() ] = alphabet[ new_position ].upper()

答案 1 :(得分:1)

您可以使用dict.update()

首先创建一个大写字母字典,然后用小写字母字典更新该字典:

In [8]: from string import *

In [9]: al=ascii_lowercase

In [10]: au=ascii_uppercase

In [11]: for shift in range(2):
    dic1=dict(zip(au, au[shift:] + au[0:shift]))
    dic1.update(dict(zip(al, al[shift:] + al[0:shift])))
    print dic1
   ....:     
{'A': 'A', 'C': 'C', 'B': 'B', 'E': 'E', 'D': 'D', 'G': 'G', 'F': 'F', 'I': 'I', 'H': 'H', 'K': 'K', 'J': 'J', 'M': 'M', 'L': 'L', 'O': 'O', 'N': 'N', 'Q': 'Q', 'P': 'P', 'S': 'S', 'R': 'R', 'U': 'U', 'T': 'T', 'W': 'W', 'V': 'V', 'Y': 'Y', 'X': 'X', 'Z': 'Z', 'a': 'a', 'c': 'c', 'b': 'b', 'e': 'e', 'd': 'd', 'g': 'g', 'f': 'f', 'i': 'i', 'h': 'h', 'k': 'k', 'j': 'j', 'm': 'm', 'l': 'l', 'o': 'o', 'n': 'n', 'q': 'q', 'p': 'p', 's': 's', 'r': 'r', 'u': 'u', 't': 't', 'w': 'w', 'v': 'v', 'y': 'y', 'x': 'x', 'z': 'z'}
{'A': 'B', 'C': 'D', 'B': 'C', 'E': 'F', 'D': 'E', 'G': 'H', 'F': 'G', 'I': 'J', 'H': 'I', 'K': 'L', 'J': 'K', 'M': 'N', 'L': 'M', 'O': 'P', 'N': 'O', 'Q': 'R', 'P': 'Q', 'S': 'T', 'R': 'S', 'U': 'V', 'T': 'U', 'W': 'X', 'V': 'W', 'Y': 'Z', 'X': 'Y', 'Z': 'A', 'a': 'b', 'c': 'd', 'b': 'c', 'e': 'f', 'd': 'e', 'g': 'h', 'f': 'g', 'i': 'j', 'h': 'i', 'k': 'l', 'j': 'k', 'm': 'n', 'l': 'm', 'o': 'p', 'n': 'o', 'q': 'r', 'p': 'q', 's': 't', 'r': 's', 'u': 'v', 't': 'u', 'w': 'x', 'v': 'w', 'y': 'z', 'x': 'y', 'z': 'a'}

或者您也可以str.translate()使用string.maketrans

for shift in xrange(4):
    t=maketrans(au+al,au[shift:]+au[:shift]+al[shift:]+al[:shift])
    print "abcxyzABCXYZ".translate(t)
   ....:     
abcxyzABCXYZ
bcdyzaBCDYZA
cdezabCDEZAB
defabcDEFABC
  

S.translate(table [,deletechars]) - >串

     

返回字符串S的副本,其中所有字符都出现在   删除可选参数deletechars,剩余的   字符已通过给定的转换表进行映射,其中   必须是长度为256或无的字符串。如果表参数为None,   没有应用翻译,操作只是删除了   deletechars中的字符。

答案 2 :(得分:1)

这样的事情:

import string

def Coder(shift):
    alpha = string.ascii_lowercase
    ALPHA = string.ascii_uppercase
    if 0 <= shift < 26:
        unshifted_letters = ALPHA + alpha
        shifted_letters = ALPHA[shift:] + ALPHA[:shift] + alpha[shift:] + alpha[:shift]
        return dict(zip(unshifted_letters, shifted_letters))

但正如其他人所说,更好的解决方案是encode('rot13')string.maketrans。特别是,这个:“rot_13 rot13 Unicode string返回操作数的Caesar-cypher加密”。