Build a Caesar Cipher - Step 10

Tell us what’s happening:

Not work to all model codes no-no no peles solve thecod

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)
text = 'hello world'
encrypted_text = text.translate(translation_table)
print(encrypted_text)
        pass

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 10

make sure you understand indentation in python. Right now there is nothing inside the function

1 Like