0
所以我試圖做一個臨時編碼器/解碼器,而不使用模塊,以及我的方法工作與單數字母,但不是單詞。我設置了代碼,以便用您選擇的鍵對單詞的每個字母進行編碼。如何解碼一個字母列表並重建Python中的原始單詞?
我想知道的是如何解碼編碼數字的列表,然後重建單詞。這將是驚人的,非常有益的感謝。 P.S.我是Python的初學者,這是我的第二天,所以我嘗試了我所知道的一切,請不要使用任何模塊。
while True :
option = input('Encode or Decode? : ')
if option == 'encode':
start = input('What word do you want to be encoded?: ')
word = start
key = int(input('What key would you like to use?: '))
z=[]
for i in word:
encoder = ord(i)*key+key/key
z.append(encoder)
print(z)
else:
start = float(input('What encoded string do you want to be decoded?: '))
key = int(input('What key would you like to use?: '))
decoder = start/key
print(chr(round(decoder)))
這是非常有用的,雖然使它的工作,我不得不改變一些編碼部分適合解碼器,反正謝謝! – Riderfighter