Bases: _abcoll.MutableSequence
A list-like object with attributes.
Initialization
Parameters : |
|
---|
Return a deep copy.
Equivalent to copy.deepcopy(x)
Returns : |
|
---|
Examples
>>> x.copy()
Uses numerically tolerant equality.
Return True if two lists are congruent in that
- Each pair of their elements are equal.
- Both instances have equal attributes.
Numerical equality is to within a tolerance. Refer to cf for details.
Parameters: |
|
---|---|
Returns: | True if the two objects are congruent, False otherwise. |
Uses numerically tolerant equality.
CFL.insert(index, object) – insert object before index