Tell us what’s happening:
我已经尽力了,但是这个encrypted_text真的不知道真么传参过去,请求大佬指点一二,感激不谢
Your code so far
encrypted_text = ''
def caesar(text, shift):
alphabet = 'abcdefghijklmnopqrstuvwxyz'
shifted_alphabet = alphabet[shift:] + alphabet[:shift]
translation_table = str.maketrans(alphabet, shifted_alphabet)
encrypted_text = text.translate(translation_table)
return encrypted_text
# User Editable Region
encrypted_text = caesar('freeCodeCame', 3)
print(encrypted_text)
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0
Challenge Information:
Build a Caesar Cipher - Step 12