Just curious,
Is there any difference between calling len([1,2,3]) or [1,2,3].__len__() ? If there is no apparent difference, what is done differently behind the scenes?
Thanks
|
Just curious, Is there any difference between calling Thanks |
|||||
|
|
It was decided at some point long ago getting the length of something should be a function and not a method code, reasoning that |
||||
|
|
|
It's often the case that the "typical" behavior of a built-in or operator is to call (with different and nicer syntax) suitable magic methods (ones with names like
When you see a call to the Other built-ins provide even more added value beyond simple sanity checks and readability. By uniformly designing all of Python to work via calls to builtins and use of operators, never through calls to magic methods, programmers are spared from the burden of remembering which case is which. (Sometimes an error slips in: until 2.5, you had to call So the general rule should be to never call a magic method directly (but always indirectly through a built-in) unless you know exactly why you need to do that (e.g., when you're overriding such a method in a subclass, if the subclass needs to defer to the superclass that must be done through explicit call to the magic method). |
|||
|
|
|
You can think of len() as being roughly equivalent to
One advantage is that it allows you to write things like
instead of
or
There is slightly different behaviour though. For example in the case of ints
|
||||
|
|