Hi, the output of program was 7
i think the output is correct
but it showing that your code does not pass
what should i need to change in this program to make it correct and why please explain.
Your code so far
/* User Editable Region */
text = 'Hello World'
text = text.lower()
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
index = alphabet.find(text[0])
print(index)
/* User Editable Region */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 14