為什麼我的 Python 凱撒密碼只顯示最後一個移動的字元?

Mary-Kate Olsen
發布: 2024-10-30 09:37:27
原創
609 人瀏覽過

Why is my Python Caesar Cipher only displaying the last shifted character?

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!