Learn String Manipulation by Building a Cipher - Step 43

Tell us what’s happening:

stuck for hours can’t figure out how, the task is to add ‘else’ after encrypted_text += char

Your code so far


# User Editable Region

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

for char in text.lower():
    if char == ' ':
        encrypted_text += char
        else:
    index = alphabet.find(char)
    new_index = index + shift
    encrypted_text += alphabet[new_index]
    print('char:', char, 'encrypted text:', encrypted_text)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 43

else needs to be indented like the if, while the things inside the else need to be indented four spaces more than that

1 Like

I have to reread your reply three times before I understand it. Thank you! I finally answered it right.

2 Likes

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