我知道要求一群人浏览几个代码块有点大胆,但无论如何我都会尝试。我正在尝试使用 tk 在 python 中创建 enigma(第二次世界大战中使用的德国加密机)的克隆。从逻辑上查看我的代码,该方法encrypt()
要么返回字符串“Alert”,这是极不可能的,要么正在返回None
。有人可以快速但专注地浏览一下,以便我解决这个问题吗?谢谢你。
from Tkinter import *
from string import letters
import tkMessageBox
root = Tk()
root.title("EnigmaTK")
def rank(x, d = dict((letr,n%26+1) for n,letr in enumerate(letters[0:52]))):
return d[x]
def shift(key, array):
counter = range(len(array))
new = counter
for i in counter:
new[i] = array[i-key]
return new
alph = ["a", "b", "c", "d", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", " "]
rotI = ["a", "b", "c", "d", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", " "]
rotII = ["a", "b", "c", "d", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", " "]
rotIII = ["a", "b", "c", "d", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", " "]
ref = ["a", "b", "c", "d", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "e", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", " "]
label = Label(root, text="Input:")
label.pack(side = LEFT)
entry = Entry(root)
entry.pack(side = RIGHT)
input = entry.get()
rotor_set = map(rank, input[:3])
message = input[3:]
def encrypt():
new_message = message
for a in xrange(len(message)):
for e in range(rotor_set[2]):
new_message[a] = alph[rotI.index(rotII[rotIII.index(ref[rotIII.index(rotII[rotI.index(alph[a])])])])]
a = a + 1
rotIII = shift(1, rotIII)
for i in range(rotor_set[1]):
new_message[a] = alph[rotI.index(rotII[rotIII.index(ref[rotIII.index(rotII[rotI.index(alph[a])])])])]
a = a + 1
rotII = shift(1, rotII)
for o in range(rotor_set[0]):
new_message[a] = alph[rotI.index(rotII[rotIII.index(ref[rotIII.index(rotII[rotI.index(alph[a])])])])]
a = a + 1
rotI = shift(1, rotI)
return new_message
def show():
tkMessageBox.showinfo( "English to Enigma", encrypt())
e = Button(root, text = "encrypt", command = show)
e.pack()
root.mainloop()
靠近顶部的字母都是一样的。如果问题得到解决,我将更改此设置。谢谢你。