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

static bytearray.maketrans(from, to) This static method returns a translation table usable for bytes.translate()

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

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

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

bytes.find(sub[, start[, end]]) bytearray.find(sub[, start[, end]]) Return the lowest index in the data where the

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

str.upper() Return a copy of the string with all the cased characters [4] converted to uppercase. Note that str.upper()

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

intersection_update(other, ...) set &= other & ... Update the set, keeping only elements found in it and

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

str.capitalize() Return a copy of the string with its first character capitalized and the rest lowercased.

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

class.__mro__ This attribute is a tuple of classes that are considered when looking for base classes during method resolution

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

format A string containing the format (in

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

bytes.upper() bytearray.upper() Return a copy of the sequence with all the lowercase ASCII characters converted

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

bytearray.rstrip([chars]) Return a copy of the sequence with specified trailing bytes removed. The chars argument is

2025-01-10 15:47:30