Learn String Manipulation by Building a Cipher - Step 17

Tell us what’s happening:

I have read this several times but still not getting the understanding. I really need help on how to solve this with structure demonstration

Your code so far


# User Editable Region

text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
index = find(text[0]).lower()
print(index)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 15_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/120.0.6099.119 Mobile/15E148 Safari/604.1

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 17

The instructions ask you to pass this to the find() function:

text[0].lower()

You are passing text[0] to the find function and then calling .lower() on the find function