i really dnt understand wht im supposed to do… my brain is not braining… wdym by add .lower with print
Your code so far
# User Editable Region
text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'
text.lower
print(text.lower)
index = alphabet.find(text[0])
print(index)
# 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/118.0.0.0 Safari/537.36
Challenge Information:
Learn String Manipulation by Building a Cipher - Step 16
I mean that parentheses have a precise meaning and if you don’t write them after the function you want to call (in your case the lower() function) you are not doing anything.
If the instructions say you need to print text.lower(), why do you try to print text.lower?