bytearray.istitle()
  • References/Python/Python/Built-in Types

bytearray.istitle() Return true if the sequence is ASCII titlecase and the sequence is not empty, false otherwise. See bytes

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

shape A tuple of integers the length of ndim giving the shape of the memory as an N-dimensional array.

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

str.isnumeric() Return true if all characters in the string are numeric characters, and there is at least one character, false

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

bytearray.replace(old, new[, count]) Return a copy of the sequence with all occurrences of subsequence old replaced

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
str.isspace()
  • References/Python/Python/Built-in Types

str.isspace() Return true if there are only whitespace characters in the string and there is at least one character, false otherwise

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

class.__subclasses__() Each class keeps a list of weak references to its immediate subclasses. This method returns a list of

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

stop The value of the stop parameter

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

bytearray.splitlines(keepends=False) Return a list of the lines in the binary sequence, breaking at ASCII line boundaries. This

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

str.partition(sep) Split the string at the first occurrence of sep, and return a 3-tuple containing the part before

2025-01-10 15:47:30