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

bytearray.split(sep=None, maxsplit=-1) Split the binary sequence into subsequences of the same type, using sep as the

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

bytes.join(iterable) bytearray.join(iterable) Return a bytes or bytearray object which is the concatenation of the

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

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

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

bytearray.rpartition(sep) Split the sequence at the last occurrence of sep, and return a 3-tuple containing the part

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

bytes.isalpha() bytearray.isalpha() Return true if all bytes in the sequence are alphabetic ASCII characters and

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

bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character, and the first byte capitalized

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

str.translate(table) Return a copy of the string in which each character has been mapped through the given translation table

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

bytes.decode(encoding="utf-8", errors="strict") bytearray.decode(encoding="utf-8", errors="strict") Return a string

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

setdefault(key[, default]) If key is in the dictionary, return its value. If not, insert key with a value

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

cast(format[, shape]) Cast a memoryview to a new format or shape. shape defaults to [byte_length//new_itemsize]

2025-01-10 15:47:30