Learn String Manipulation by Building a Cipher - Step 24

Tell us what’s happening:

what to do with this? this indentation is not understanding

Your code so far


# User Editable Region

text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
for i in text:
print(i)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Safari/605.1.15

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 24

Hello.
The indentation problem is here.

The print statement needs to be in the if block, so you give it some space, mostly 4 spaces, but if you press the Tab key, it should be indented correctly.