Tell us what’s happening:
Hello! In step 31, my code is not being submitted and no errors are being shown.
Please guide me.
Your code so far
# User Editable Region
text = 'Hello World'
text = 'Albatross'
# User Editable Region
alphabet = 'abcdefghijklmnopqrstuvwxyz'
for char in text.lower():
index = alphabet.find(char)
print(char, index)
new_index = index + shift
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 31