I have tried everything it has taught me so far and nothing is working. I Need Help. What am i actually doing wrong?
Your code so far
# User Editable Region
alphabet = 'abcdefghijklmnopqrstuvwxyz'
alphabet.find(text[0])
index = alphabet.find(text[0])
print(index)
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 14
it doesn’t need to go above alphabet, as you need alphabet to initialize index
so you first initialize text and alphabet and after you can initialize index