Build a Caesar Cipher - Step 4

Tell us what’s happening:

I have the code exactly as its asking me for it to be and yet it wont le me move on im not sure what i have wrong the missing 5 letters are now at the end of the shifted alphabet exactly as its asked.

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 (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

Hi

You are note asked to put the print log in the middle.

The reminder tells you how to return characters extracted from a sentence.

As a reminder, sentence[start:stop] returns the characters of sentence from position start (included) to stop (excluded).


What starting position is yours from?


alphabet[:shift]