Build a Caesar Cipher - Step 4

Tell us what’s happening:

I’m not sure why my answer is not being accepted, is it an indentation error?

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/143.0.0.0 Safari/537.36 Edg/143.0.0.0

Challenge Information:

Build a Caesar Cipher - Step 4

Please refer to this topic: Build a Caesar Cipher - Step 4 - Python - The freeCodeCamp Forum

Nevermind, figured it out. Had to delet the previous shift .

New answer
removed by mod

Instead of thinking of this as deleting the first line I would think of this as the instructions telling you to modify your code instead of repeating it.

thanks it work after so many attempt

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge. How to Help Someone with Their Code Using the Socratic Method

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Struggling with the same step.. I can get the right answer I believe but the testing won’t accept my answer..

alphabet = ‘abcdefghijklmnopqrstuvwxyz’

shift = 5

shifted_alphabet = alphabet[:shift]+alphabet[shift:]

print(shifted_alphabet)

Hi @walter.carl.stuart , I suggest you create a separated post. This avoids the moderators to come back on an already solved subject.

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.