Tell us what’s happening:
hello can some one help me please.
At the end of your code, call .find() on your alphabet string and pass text[0] to the method. Note that a method is just a function that belongs to an object (you will learn more about that in another project).
Your code so far
# User Editable Region
text = 'alphabet'
Text = text.find('a')
print(Text)
# 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/123.0.0.0 Safari/537.36 Edg/123.0.0.0
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 13