我进入 GCSE 计算课程几周,现在是 9 年级。今天我们学习了一个简单的加密程序。我不是很了解它。有经验的python程序员能简单解释一下这段代码吗?
顺便说一句 - 我已经对我理解的代码段发表了评论。
message = str(input("Enter message you want to encrypt: ")) #understand
ciphered_msg = str() #understand
i = int() #understand
j = int() #understand
n = int(3)
for i in range(n):
for j in range(i, len(message), n):
ciphered_msg = ciphered_msg + message[j]
print(ciphered_msg) #understand
请帮我解决这个问题,因为我真的想要更多的 Python 知识并在考试中获得 A*。
我知道 for 循环是如何工作的,但我只是不明白这个循环是如何工作的。
谢谢!