array.typecode The typecode character used to create the array.
array.tounicode() Convert the array to a unicode string. The array must be a type 'u' array; otherwise a ValueError is raised. Use array.tobytes().decode(enc) to obtain a unicode string from an array of some other type.
array.tostring() Deprecated alias for tobytes().
array.tolist() Convert the array to an ordinary list with the same items.
array.tofile(f) Write all items (as machine values) to the file object f.
array.tobytes() Convert the array to an array of machine values and return the bytes representation (the same sequence of bytes that would be written to a file by the tofile() method.) New in version 3.2: tostring() is renamed to tobytes() for clarity.
array.reverse() Reverse the order of the items in the array.
array.remove(x) Remove the first occurrence of x from the array.
array.pop([i]) Removes the item with the index i from the array and returns it. The optional argument defaults to -1, so that by default the last item is removed and returned.
array.itemsize The length in bytes of one array item in the internal representation.
Page 655 of 663