Build a Caesar Cipher - Step 10

Tell us what’s happening:

I am getting the same error again an again, I don’t know why! Below is my code!

def caesar():

alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
text = 'hello world'
shifted_alphabet = alphabet[shift:] + alphabet[:shift]
translation_table = str.maketrans(alphabet, shifted_alphabet)
encrypted_text = text.translate(translation_table)

Your code so far


# User Editable Region

def caesar():

    alphabet = 'abcdefghijklmnopqrstuvwxyz'
    shift = 5
    text = 'hello world'
    shifted_alphabet = alphabet[shift:] + alphabet[:shift]
    translation_table = str.maketrans(alphabet, shifted_alphabet)
    encrypted_text = text.translate(translation_table)




# 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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 10

Please reset this step to restore the original code and try again. This time make sure you put all of the existing code into the function body.

1 Like