List¶
- class List(*args, dtype=<class 'float'>, **kwargs)[source]¶
Methods
appendAppend object to the end of the list.
clearRemove all items from list.
copyReturn a shallow copy of the list.
countReturn number of occurrences of value.
extendExtend list by appending elements from the iterable.
indexReturn first index of value.
insertInsert object before index.
popRemove and return item at index (default last).
removeRemove first occurrence of value.
reverseReverse IN PLACE.
sortSort the list in ascending order and return None.
toarray- __init__(*args, **kwargs)¶
Attributes
dtypeempty