i dont understand the provided instructions. Please Help.
the instructions : " Step 16
As you can see from the output, "h"
is at index 7
in the alphabet
string. Now you need to find the letter at index 7
plus the value of shift
. For that, you can use the addition operator, +
, in the same way you would use it for a mathematical addition.
Declare a variable named shifted
and assign it the alphabet
letter at index
plus shift
. "
Below is my code so far:
text = ‘Hello World’
shift = 3
alphabet = ‘abcdefghijklmnopqrstuvwxyz’
index = alphabet.find(text[7].lower())
print(index)
/* User Editable Region */
text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
index = alphabet.find(text[7].lower())
print(index)
/* User Editable Region */
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 16