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

Does anyone here use Spec# regularly? I would like to know if it is
Can anyone explain to me why I would want to use IList over List
Can anyone recommend a ready-to-use class/library compatible with C/C++/MFC/ATL that would parse iCal/vCal/Google calendar
Would anyone know if there are plans or extensions to Visual Studio to allow
Would anyone happen to know how to convert type LPTSTR to char * in
Would anyone know what the Win32 equivalent of opendir is (or if it even
I provide a web service to my organisation. i was wondering would anyone recommeding
If my understanding is correct, they do exactly the same thing. Why would anyone
Does anyone know what would be the minimum rights I would need to grant
Is anyone aware of a script/class (preferably in PHP) that would parse a given

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.