Build a Caesar Cipher - Step 10

Tell us what’s happening:

I dont understand what is happening here. Please help

It says its wrong and im not sure why.

Your code so far


# User Editable Region

def caesar():
    alphabet = 'abcdefghijklmnopqrstuvwxyz'
    shift = 5
    shifted_alphabet = alphabet[shift:] + alphabet[:shift]
    translation_table = str.maketrans(alphabet, shifted_alphabet)
    print(translation_table)
    text = 'hello world'
    encrypted_text = text.translate(translation_table)
    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/141.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 10

Hi @nsteele1298 and welcome to our community!

You have an extra print call in the function body, which is causing your code to fail. Otherwise, it’s correct.

1 Like

i dont understand i am going through the same issue

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

remember the meaning of indentation

also please create your own topic for your questions