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

1 Like

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.

1 Like

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.