Learn String Manipulation by Building a Cipher - Step 13

Tell us what’s happening:

Describe your issue in detail here.

help me solve this - Step 13

Now assign the value returned by alphabet.find(text[0]) to a variable named index. Then, print its value.

ive writen some code but its not working

Your code so far

text = ‘Hello World’

shift = 3

alphabet = ‘abcdefghijklmnopqrstuvwxyz’

alphabet.find(text[0])

index = -1

print(‘-1’)


/* User Editable Region */

text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
alphabet.find(text[0])
index = -1
print('-1')

/* 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

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.

Hi @matiastorressuarez9

variables are like containers, say I want to hold the index of letter ‘H’ then I use some var names like index. Then store it inside it using = operator.

Eg:

index = alphabet.find(text[1])

Now, to print it I will use the name index.

print(*variable name*)

Eg:

num1 = 26
num2 = 1224
sum = num1 + num2

As u see, I do not say sum = 26 + 1224.

Good luck!

1 Like

thanks alot il try to run it again .

Did it work…?

Good luck!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.