Learn String Manipulation by Building a Cipher - Step 34

Tell us what’s happening:

What is wrong here?

Your code so far


/* User Editable Region */

text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
encrypted_text = ''

for char in text.lower():
    index = alphabet.find(char)    
    new_index = index + shift
    new_char = encrypted_text
    print('char:', char, 'encrypted_text:', encrypted_text)

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

What has you confused? Please talk to us about how you are stuck in your own words

Here is what I have to do:
Now, replace new_char with encrypted_text . Also, modify the print() call to reflect this change.

My code doesn’t pass. Why? I’ve replaced new char with encrypted_text.

I can read the instructions. I can’t read your mind to know your confusion.

The word ‘new_char’ here is what you are intended to replace

This is the suggestion made : You should replace new_char with encrypted_text .

If you see I’ve changed new__char with encrypted_text but the code doesn’t pass, why?

No, you didn’t replace ‘new_char’. It’s still there

ok thank you done now

2 Likes

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