Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #24383

Re: How can i call array_length to get the length of array object?

From Stefan Behnel <stefan_ml@behnel.de>
Subject Re: How can i call array_length to get the length of array object?
Date 2012-06-24 10:48 +0200
References <CALwzidmJSm8W3ML3r1vBMhzfcEr7PbDCe02Ndd1SxedwykR9Ng@mail.gmail.com> <1340524913.38366.YahooMailClassic@web164603.mail.gq1.yahoo.com>
Newsgroups comp.lang.python
Message-ID <mailman.1446.1340527717.4697.python-list@python.org> (permalink)

Show all headers | View raw


gmspro, 24.06.2012 10:01:
> Why are some methods/functions named in this way in python? __len__
> 
> underscoreunderscoreNAMEunderscoreunderscore
> 
> Is there any speciality of naming such methods?

Yes. Look up "special methods" in the documentation.

You may have noticed the correspondence between len() and __len__(). That
is Python's way of allowing you to implement this kind of generic
functionality (sometimes referred to as a protocol).

You also asked why len() is a function instead of a method. Don't you find
it much easier to use one function for everything than to look up and
sometimes even learn one method for each kind of object you are dealing
with? Python prefers simplicity here. You want the length? Use len().

Stefan

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: How can i call array_length to get the length of array object? Stefan Behnel <stefan_ml@behnel.de> - 2012-06-24 10:48 +0200

csiph-web