In python is this the only way to get the number of elements:
arr.__len__()
If so, why the strange syntax?
|
|
The same works for tuples:
It was intentionally done this way so that lists, tuples and other container types didn't all need to explicitly implement a public |
|||||||||||||||||||||
|
|
The preferred way to get the length of any python object is to pass it as an argument to the len function. Internally, python will then try to call the special |
|||
|
|
|
The way you take a length of anything for which that makes sense (a list, dictionary, tuple, string, ...) is to call
The reason for the "strange" syntax is that internally python translates |
|||||||||||||
|
|
Python uses duck typing: it doesn't care about what an object is, as long as it has the appropriate interface for the situation at hand. When you call the built-in function len() on an object, you are actually calling its internal __len__ method. A custom object can implement this interface and len() will return the answer, even if the object is not conceptually a sequence. For a complete list of interfaces, have a look here: http://docs.python.org/reference/datamodel.html#basic-customization |
|||
|
|
|
Just use len(arr):
|
|||||
|