memoryview.suboffsets
  • References/Python/Python/Built-in Types

suboffsets Used internally for PIL-style arrays. The value is informational only.

2025-01-10 15:47:30
bytes.partition()
  • References/Python/Python/Built-in Types

bytes.partition(sep) bytearray.partition(sep) Split the sequence at the first occurrence of sep, and return

2025-01-10 15:47:30
bytes.isalnum()
  • References/Python/Python/Built-in Types

bytes.isalnum() bytearray.isalnum() Return true if all bytes in the sequence are alphabetical ASCII characters or

2025-01-10 15:47:30
str.isprintable()
  • References/Python/Python/Built-in Types

str.isprintable() Return true if all characters in the string are printable or the string is empty, false otherwise. Nonprintable

2025-01-10 15:47:30
memoryview.release()
  • References/Python/Python/Built-in Types

release() Release the underlying buffer exposed by the memoryview object. Many objects take special actions when a view is held

2025-01-10 15:47:30
str.index()
  • References/Python/Python/Built-in Types

str.index(sub[, start[, end]]) Like find(), but raise

2025-01-10 15:47:30
memoryview.ndim
  • References/Python/Python/Built-in Types

ndim An integer indicating how many dimensions of a multi-dimensional array the memory represents.

2025-01-10 15:47:30
iterator.
  • References/Python/Python/Built-in Types

iterator.__next__() Return the next item from the container. If there are no further items, raise the

2025-01-10 15:47:30
bytes.isspace()
  • References/Python/Python/Built-in Types

bytes.isspace() bytearray.isspace() Return true if all bytes in the sequence are ASCII whitespace and the sequence

2025-01-10 15:47:30
str.casefold()
  • References/Python/Python/Built-in Types

str.casefold() Return a casefolded copy of the string. Casefolded strings may be used for caseless matching.

2025-01-10 15:47:30