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

  • SEARCH
  • Home
  • 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 990601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:58:08+00:00 2026-05-16T05:58:08+00:00

why would anyone use double underscores why not just do len([1,2,3]) ? my question

  • 0
  1. why would anyone use double underscores
  2. why not just do len([1,2,3])?

my question is specifically What do the underscores mean?

  • 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-16T05:58:08+00:00Added an answer on May 16, 2026 at 5:58 am

    The one reason I’ve had to use x.__len__() rather than len(x) is due to the limitation that len can only return an int, whereas __len__ can return anything.

    You might quite reasonably argue that only an integer should be returned, but if the length of your object is greater than sys.maxsize then you have no choice except to return a long instead:

    >>> class A(object):
    ...     def __len__(self):
    ...         return 2**80
    ...
    >>> a = A()
    >>> len(a)
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    OverflowError: long int too large to convert to int
    >>> a.__len__()
    1208925819614629174706176L
    

    This isn’t just a theoretical limitation, I’ve done a fair bit of work with bit containers where (with 32-bit Python) the len function stops working when the object reaches just 256MB.

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

Sidebar

Related Questions

SHA384 is a truncated version of SHA512. But why would anyone use it? And
Was wondering whether anyone would know why do we use the parentheses in this
Would anyone be able to tell me how to pull the server name out
Would anyone offer tips, links, code snippets on how to browse to a file
Would anyone like to recommend free alternative to SharePoint Portal ? We want to
Would anyone happen to know a trick that will keep this MSBuild task from
Would anyone know how to test for the appearance of a Toast message on
Would anyone now why this script is disabling my nav in webkit browsers $(document).ready(function
Would anyone one know if Apple has restrictions on providing a user feedback/bug report
Would anyone be able to help me with how to get the file properties

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.