Tell us what’s happening:
text = ‘Hello World’
text = text.lower()
alphabet = ‘abcdefghijklmnopqrstuvwxyz’
index = alphabet.find(text[0])
print(text)
print(index)
I am sure my code is working but it doesn’t accept it, ı am getting 7 and Hello World outputs
Your code so far
# User Editable Region
text = 'Hello World'
text = text.lower()
alphabet = 'abcdefghijklmnopqrstuvwxyz'
index = alphabet.find(text[0])
print(text)
print(index)
# 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/128.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 17