Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6626557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:54:23+00:00 2026-05-25T21:54:23+00:00

How do I check whether an object supports [] operation in Python? I think

  • 0

How do I check whether an object supports [] operation in Python? I think of something like the following:

if supports(obj, ?[]?):
    print("Supports")  
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:54:23+00:00Added an answer on May 25, 2026 at 9:54 pm

    Try hasattr(obj, "__getitem__"):

    if hasattr(obj, "__getitem__"):
        print("Supports") 
    

    From the operator.getitem help:

    operator.getitem??
    Type:           builtin_function_or_method
    Base Class:     <type 'builtin_function_or_method'>
    String Form:    <built-in function getitem>
    Namespace:      Interactive
    getitem(a, b) -- Same as a[b].
    

    Check out the operator module:

    • Return the value of a at index b:

      operator.getitem(a, b)
      operator.__getitem__(a, b)
      
    • Return the slice of a from index b to index c-1:

      operator.getslice(a, b, c)
      operator.__getslice__(a, b, c)
      
    • Set the value of a at index b to c:

      operator.setitem(a, b, c)
      operator.__setitem__(a, b, c)
      
    • Set the slice of a from index b to index c-1 to the sequence v.

      operator.setslice(a, b, c, v)
      operator.__setslice__(a, b, c, v)
      
    • Remove the value of a at index b:

      operator.delitem(a, b)
      operator.__delitem__(a, b)
      
    • Delete the slice of a from index b to index c-1:

      operator.delslice(a, b, c)
      operator.__delslice__(a, b, c)
      

    etc..

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to check whether an object (e.g. someObject ) is assignable (cast-able)
I tried to make ValidationAttribute which would check the database whether such an object.
Assuming I declare var ad = {}; How can I check whether this object
I have an object obj and a class name MyClass , i can check
How do I check whether an object already exists, and only add it if
I want to check whether string is empty or not when i create object=Shared.getLocal(abc);
I am trying to check whether the number of items in an object is
In an if statement in Java how can I check whether an object exists
I'm using JSTL and want to check whether an object is a String or
How to check whether two variables reference the same object? x = ['a', 'b',

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.