Tell us what’s happening:
I am not getting the result from my code, I do not know where the problem is
Your code so far
# User Editable Region
# Declare the alphabet string
alphabet = 'abcdefghijklmnopqrstuvwxyz'
# Find the position of the first letter in the alphabet string
position_of_first_letter = alphabet.find(alphabet[0])
# Print the result
print("Position of the first letter in the alphabet:", position_of_first_letter)
index = "o"
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/120.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 13