My code is about to deal with parenthesis but I’m struggling with it
# User Editable Region
text= (Hello World)
print
# User Editable Region
![image|281x500](upload://w25ZB7goBX6OH2aIreEPaSQLSGn.jpeg)
![image|281x500](upload://7F87uF0veUymnnRgvbnQhfsfzcy.jpeg)
Your browser information:
User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 15_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/119.0.6045.169 Mobile/15E148 Safari/604.1
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 4
Instead of print(text), you should print the letter from the text variable, which is positioned at index 6. That means you should use print( ), but between parentheses put the variable ‘text’ and add immediately after that word a pair of square brackets [] and index 6 between them.