Learn String Manipulation by Building a Cipher - Step 14

Tell us what’s happening:

my step 14 code is not passing
i have tried every method
it keeps saying modify text 0 into find z i am really confused and worried cause i am trying to learn its so frustrating so pleae help me out what am i supposed to do if you can show me i will be grateful cause i am stucked and really need help i have tried different methods it just is not working thats why i decided to ask for help maybe its a problem from younguys end or i am dping the wrong thing please help look into this thank you so

Your code so far


# User Editable Region

text = "Hello World"
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
index_of_first_letter = alphabet.find(text[0])
print(f"First character: '{text[0]}'")

# 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/134.0.0.0 Safari/537.36

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 14

Welcome to the forum @zeeinthebuilding

You should modify your existing alphabet.find('z') call passing text[0] to the method.

You are not asked to use an f-string for this step.

Please reset the step to restore the original code and try again.
You are not required to add a string to the print call.
You are only required to change .find call.

Happy coding