vote up 3 vote down star
1

How can I count the number of elements in an array, because contrary to logic array.count(string) does not count all the elements in the array, it just searches for the number of occurrences of string.

flag

3 Answers

vote up 20 vote down check

len(myArray)

link|flag
vote up -2 vote down

Or,

myArray.__len__()

if you want to be oopy; "len(myArray)" is a lot easier to type! :)

link|flag
Race conditions! Yuck. – Gregg Lind Oct 9 '08 at 14:25
Thats a definite Yuk. – Unkwntech Oct 9 '08 at 14:32
vote up 3 vote down

len is a built-in function that calls the given container object's __len__ member function to get the number of elements in the object.

Functions encased with double underscores are usually "special methods" implementing one of the standard interfaces in Python (container, number, etc). Special methods are used via syntactic sugar (object creation, container indexing and slicing, attribute access, built-in functions, etc.).

Using obj.__len__() wouldn't be the correct way of using the special method, but I don't see why the others were modded down so much.

link|flag
Especially when both of us mentioned that is was bad form. Understanding what length "really" does is important in it's own right. – Gregg Lind Oct 14 '08 at 17:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.