Python 中的凱撒密碼實作:加密文字無法正確顯示
此Python 程式碼旨在實現凱撒密碼,該密碼基於使用者輸入。但是,產生的密文僅顯示最後移位的字符,而不是整個加密字串。提供的程式碼如下:
<code class="python">plainText = raw_input("What is your plaintext? ") shift = int(raw_input("What is your shift? ")) def caesar(plainText, shift): cipherText = "" for ch in plainText: if ch.isalpha(): stayInAlphabet = ord(ch) + shift if stayInAlphabet > ord('z'): stayInAlphabet -= 26 finalLetter = chr(stayInAlphabet) cipherText += finalLetter print "Your ciphertext is: ", cipherText return cipherText caesar(plainText, shift)</code>
分析
問題出在處理明文中每個字元的循環中。程式碼不會將所有移位的字元附加到 cipherText 變量,而是僅使用最後一個移位的字元來更新它。若要修正此問題,應在字元處理循環之前聲明原始 cipherText 變數。
Pythonic 實作
可以使用Python 的字串操作方法來實現最佳化的凱撒密碼實作:
<code class="python">def caesar(plaintext, shift): alphabet = string.ascii_lowercase shifted_alphabet = alphabet[shift:] + alphabet[:shift] table = string.maketrans(alphabet, shifted_alphabet) return plaintext.translate(table)</code>
透過使用string.makemakemake. () 和str.translate(),可以透過單一操作加密整個明文字串,從而提高效能和程式碼可讀性。
以上是為什麼我的 Python 凱撒密碼只顯示最後一個移動的字元?的詳細內容。更多資訊請關注PHP中文網其他相關文章!