Build a Caesar Cipher - Step 4

Tell us what’s happening:

I have tried my best my,either im not understanding the question or Im doing something wrong here.

Please help me

Your code so far


# User Editable Region

alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
shifted_alphabet = alphabet[shift:]

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

# 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/142.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 4

alphabet = ‘abcdefghijklmnopqrstuvwxyz’

shift = 5

shifted_alphabet = alphabet[shift:] + ‘’ + alphabet[0:5]

print(shifted_alphabet)

Tried this still not working

edit the existing lines, then don’t use an empty string, concatenate the two parts of alphabet together, also use shift, don’t hardcode 5

Thank you !
just figured out myself ,haha such a silly mistake