bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character, and the first byte capitalized
remove(elem) Remove element elem from the set. Raises
bytearray.lower() Return a copy of the sequence with all the uppercase ASCII characters converted to their corresponding lowercase
update([other]) Update the dictionary with the key/value pairs from other, overwriting existing keys. Return None
setdefault(key[, default]) If key is in the dictionary, return its value. If not, insert key with a value
definition.__name__ The name of the class, function, method, descriptor, or generator instance.
bytearray.find(sub[, start[, end]]) Return the lowest index in the data where the subsequence sub is found, such that
bytearray.split(sep=None, maxsplit=-1) Split the binary sequence into subsequences of the same type, using sep as the
bytearray.rsplit(sep=None, maxsplit=-1) Split the binary sequence into subsequences of the same type, using sep as
classmethod int.from_bytes(bytes, byteorder, *, signed=False) Return the integer represented by the given array of bytes.
Page 5 of 20