classmethod fromkeys(seq[, value]) Create a new dictionary with keys from seq and values set to value.
bytearray.decode(encoding="utf-8", errors="strict") Return a string decoded from the given bytes. Default encoding is 'utf-8'
class memoryview(obj) Create a memoryview that references obj. obj must support the buffer protocol
str.isupper() Return true if all cased characters [4] in the string are uppercase and there is at least one cased character
bytes.rpartition(sep) bytearray.rpartition(sep) Split the sequence at the last occurrence of sep, and return
class range(stop) class range(start, stop[, step]) The arguments to the range constructor must be integers (either
bytearray.index(sub[, start[, end]]) Like find(), but raise
bytearray.islower() Return true if there is at least one lowercase ASCII character in the sequence and no uppercase ASCII characters
str.title() Return a titlecased version of the string where words start with an uppercase character and the remaining characters
float.is_integer() Return True if the float instance is finite with integral value, and False otherwise:
Page 11 of 20