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.
|
|
len(myArray) |
||
|
|
|
|
Or,
if you want to be oopy; "len(myArray)" is a lot easier to type! :) |
||||
|
|
|
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 |
||
|
