Learn String Manipulation by Building a Cipher - Step 16

Tell us what’s happening:

i don’t find solution for the step help me please

Your code so far


# User Editable Region

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

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 16

Hi there and welcome to our community!

Add another print() call to print text.lower() and see the output.

This is all you need to do for this step. Just add another print command, below the existing one, and put text.lower() inside its parentheses.

What did you try?

Do you have any questions?