如何使用txt文件中的信息加密字符串?

时间:2013-09-02 11:06:04

标签: python python-3.x

所以这是我用于密码程序的代码:

cipher = {}
for f in open('mapping.txt'):
  org, cip = f.split()
  cipher[ord(org)] = cip


inpt = input('Enter string: ')

inpt.translate(cipher)
print(inpt)

不起作用,但文本文件是这样的:

a e
e i
i o
o u
u a

所以我想做的是将元音与旁边的元音交换?我认为我在正确的轨道上,但我不确定,有人能告诉我更好的方法吗?文本文件中的字母不一定是元音,它们可以是任何东西,但这只是用于测试,提前感谢:)

2 个答案:

答案 0 :(得分:1)

cipher = {}
for f in open('mapping.txt'):
  org, cip = f.split()
  cipher[ord(org)] = cip


inpt = input('Enter string: ')

inpt = inpt.translate(cipher)
print('Message: ' + inpt)

感谢@AshwiniChaudhary !!

答案 1 :(得分:0)

试试这个:

from string import maketrans

input_cipher = open('mapping.txt', 'r').read()
intab = ''.join(el[0] for el in input_cipher.split())
outtab = ''.join(el[1] for el in input_cipher.split())
trantab = maketrans(intab, outtab)

inpt = input('Enter string: ')

inpt = inpt.translate(trantab)
print(inpt)