What does the error message ‘function’ object is not subscriptable mean in Python?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That error message in Python means you’re trying to use subscript notation, you know like “[]” on a function object, but that ain’t work. Functions can’t be treated like lists or dictionaries, so subscripting couldn’t be applied on them. If you’re getting this message, you should check if you’re correctly using your functions.