Construir un Cifrado César - Paso 15

Cuéntanos qué está pasando:

No encuentro en donde esta el error de mi codigo pls

Tu código hasta el momento

def caesar(text, shift):
    alphabet = 'abcdefghijklmnopqrstuvwxyz'
    shifted_alphabet = alphabet[shift:] + alphabet[:shift]

# User Editable Region

    translation_table = str.maketrans(alphabet, shifted_alphabet)

# User Editable Region

    return text.translate(translation_table)

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

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Información del Desafío:

Construir un Cifrado César - Paso 15

Update your str.maketrans() call by concatenating the uppercase version of each argument to the argument itself.

Can you say what is the uppercase version of each of the arguments in str.maketrans()?