Learn String Manipulation by Building a Cipher - Step 13

Tell us what’s happening:

Hello there,
I am currently on step 13 and seem to be at a complete lost. Any help would be greatly appreciated.

Kind regards,
Clay

Your code so far


# User Editable Region

text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
alphabet = .find(alphabet('z'))

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 13

review how in the example find is used on sentence, try to follow that example to use find on alphabet

Thankyou very much for the feed back.