Build a Caesar Cipher - Step 19

Tell us what’s happening:

BROOOO WHAT IS IT? IT WORKS BUT NOT? HUHHHH??? Please help anyone

Your code so far

def caesar(text, shift):
    if not isinstance(shift, int):
        return 'Shift must be an integer value.'
# User Editable Region
    if shift < 1:
        return 'Shift must be a postive integer.'
# User Editable Region

    alphabet = 'abcdefghijklmnopqrstuvwxyz'
    shifted_alphabet = alphabet[shift:] + alphabet[:shift]
    translation_table = str.maketrans(alphabet + alphabet.upper(), shifted_alphabet + shifted_alphabet.upper())
    return text.translate(translation_table)

encrypted_text = caesar('freeCodeCamp', 3)
print(encrypted_text)

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 19

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-caesar-cipher/6819c7beb4a8289c2b4f24d5.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @jolien8,

You have a typo. Please copy/paste from the instructions to avoid this type of error in the future.

Happy coding