Tell us what’s happening:
This step asks me to “take each letter in your message, find its position in the alphabet, take the letter located after 3 positions, and replace the original letter with the new letter.” but to pass this step I don’t actually have to do this!?
I was very confused on what I was tasked to do at first so I asked chatgpt for help, to try and figure out what I was supposed to do and how it works and ended up getting even more confused as the more and more I asked the more clearly it seemed to me that I didn’t actually do what I was tasked to at all, can anyone please explain why does freecodecamp accept the incomplete code bellow as correct?
Your code so far
text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
position = aphabet.find(text[0])
print(position)
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 12
