Build a Caesar Cipher - Step 4

Tell us what’s happening:

my solution is good but the system wont accept it. what can i do?

Your code so far


# User Editable Region

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





# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 4

The step wanted you to modify the existing code instead of copy-pasting the code and then modifing it.

Hey Jermy, thank you for the feedback. But then how do i fix it and move on to the next step? i deleted everything and start over but nothing, still getting an error.

Please advise.

Thank you

Its actually showing here on the right that the soloution is correct but it wont let accept the code still.

do you see that you have one incomplete alphabet and then a complete one? that is not correct

in this step you should not create new lines of code, you should work on the existing ones

Finally worked, thank you so much.