Learn String Manipulation by Building a Cipher - Step 12

Tell us what’s happening

HELP ME GUYS

Your code so far


# User Editable Region

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

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 12

Hello oforiquaye,

You are very close, but you don’t need the "a" part in there. You are trying to find the first letter of text using text[0] not a. So once you remove that you should be good! :slight_smile:

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