Describe your issue in detail here.
I have no clue on how to do this.
Your code so far
text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
for in text:
# User Editable Region
index = alphabet.find(char) for char in text:
print(char)
# 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/121.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 27
These are the instructions I am given.
“You should declare a new variable named index at the beginning of your for loop.”
please advise how to solve this challenge