Build a Caesar Cipher - Step 4

Tell us what’s happening:

I can’t solve this problem it’s hard forvme to do.

Your code so far


# User Editable Region

alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
shifted_alphabet = alphabet[shift:]
new_alphabet = alphabet[0:shift] + shifted_alphabet
print(new_alphabet)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 4

You are not asked to create a new_alphabet variable. Instead you should concatenate the slice to get the beginning of the alphabet to the existing shifted_alphabet assignment.