bytes.expandtabs()
  • References/Python/Python/Built-in Types

bytes.expandtabs(tabsize=8) bytearray.expandtabs(tabsize=8) Return a copy of the sequence where all ASCII tab characters

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

bytearray.startswith(prefix[, start[, end]]) Return True if the binary data starts with the specified prefix

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

bytearray.isdigit() Return true if all bytes in the sequence are ASCII decimal digits and the sequence is not empty, false otherwise

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

get(key[, default]) Return the value for key if key is in the dictionary, else default. If default

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

bytearray.isupper() Return true if there is at least one uppercase alphabetic ASCII character in the sequence and no lowercase

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

str.endswith(suffix[, start[, end]]) Return True if the string ends with the specified suffix, 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
memoryview.hex()
  • References/Python/Python/Built-in Types

hex() Return a string object containing two hexadecimal digits for each byte in the buffer.

2025-01-10 15:47:30