/* User Editable Region */
text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
index = alphabet.find(char)
for char in alphabet:
print(char)
/* User Editable Region */
why is it telling me that the variable has not been created
Your browser information:
User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/118.0
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 23
You declared the variable right, but the question mentions you have to do so “before the print call”. Make sure to move it right before the print call (inside the for loop).