Learn String Manipulation by Building a Cipher - Step 42

Tell us what’s happening:

I don’t understand the (space!) string. where does it come from?

Your code so far


# User Editable Region

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

for char in text.lower():
    if char == ' ':
        print(space)
    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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 42

space as a variable doesn’t really exist in this code, that’s probably why it’s confusing

The instructions just want you to print the string "space!" when char is equal to a space. Maybe it would be more clear if it was in quotes like this, but the quotes mean it’s a string.

So print the string "space!"
instead of the variable space

1 Like

What’s the rest of the answer? Else print(False)?

Is there some aspect of the instructions or code that you have a question about?

Please open a new topic, thanks!

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