发布于2024-11-30 15:44 阅读(1003) 评论(0) 点赞(7) 收藏(4)
我对 Python 一窍不通,在解决这个问题时遇到了麻烦。
此代码片段应使用字母移位对一段文本进行编码。这有意义吗?
用移位“2”对单词“no”进行编码应为 = “pq”yes。代码到这里为止都有效,但反向。
用移位“2”解码单词“pq”应该=“no”但是不...结果是“ns”?!
代码:
alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
direction = input("Type 'encode' to encrypt, type 'decode' to decrypt:\n").lower()
text = input("Type your message:\n").lower()
shift = int(input("Type the shift number:\n"))
def caesar(original_text, shift_amount, encode_or_decode):
output_text = ""
for letter in original_text:
if encode_or_decode == "decode":
shift_amount *= -1
shifted_position = alphabet.index(letter) + shift_amount
shifted_position %= len(alphabet)
output_text += alphabet[shifted_position]
print(f"Here is the {encode_or_decode}d result: {output_text}")
caesar(original_text=text, shift_amount=shift, encode_or_decode=direction)
问题出在以下几行:
if encode_or_decode == "decode":
shift_amount *= -1
上述代码位于 for 循环的“内部”。因此,对于它正在处理的每个字母,在“解码”时,它会将移位量乘以 -1。因此,例如,假设移位量为 2,则第一个字母为 -2,但下一个字母为 -1 * -2,即 +2,下一个字母为 -1 * 2,即 -2,同样如此。因此,-2、+2、-2、+2,... 这是不正确的。
修复此问题最简单的方法是将这两行代码移到 for 循环之外。如下所示:
alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
direction = input("Type 'encode' to encrypt, type 'decode' to decrypt:\n").lower()
text = input("Type your message:\n").lower()
shift = int(input("Type the shift number:\n"))
def caesar(original_text, shift_amount, encode_or_decode):
if encode_or_decode == "decode":
shift_amount *= -1
output_text = ""
for letter in original_text:
shifted_position = alphabet.index(letter) + shift_amount
shifted_position %= len(alphabet)
output_text += alphabet[shifted_position]
print(f"Here is the {encode_or_decode}d result: {output_text}")
caesar(original_text=text, shift_amount=shift, encode_or_decode=direction)
作者:黑洞官方问答小能手
链接:https://www.pythonheidong.com/blog/article/2046227/be7fcf739812e0ad4ca4/
来源:python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!