bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character, and the first byte capitalized
str.rindex(sub[, start[, end]]) Like rfind() but raises
definition.__name__ The name of the class, function, method, descriptor, or generator instance.
values() Return a new view of the dictionary’s values. See the documentation of view objects.
classmethod int.from_bytes(bytes, byteorder, *, signed=False) Return the integer represented by the given array of bytes.
str.isdigit() Return true if all characters in the string are digits and there is at least one character, false otherwise. Digits
str.isalnum() Return true if all characters in the string are alphanumeric and there is at least one character, false otherwise
bytes.islower() bytearray.islower() Return true if there is at least one lowercase ASCII character in the sequence
tolist() Return the data in the buffer as a list of elements.
cast(format[, shape]) Cast a memoryview to a new format or shape. shape defaults to [byte_length//new_itemsize]
Page 6 of 20