Learn String Manipulation by Building a Cipher - Step 5

Tell us what’s happening:

first i dont really understand what to do i tried almost everything and it still doesnt work im a beginner and i think i need more help

Your code so far


# User Editable Region

text = 'Hello World'
print(o = index{6})

# 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/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 5

Reset the code for this step with the reset button.

You have

text = 'Hello World'

and

print(text)

prints the value of text, which is Hello World.

You know that you can access individual letters of text with text[n], where n is a numeric index. So, use the number required by the instructions and use print to print the result.

You must not assign values to anything. The only thing to modify is the print(text) line.