Return1 if the object provides mapping protocol, and0 otherwise. Thisfunction always succeeds.
Returns the number of keys in objecto on success, and-1 on failure. Forobjects that do not provide mapping protocol, this is equivalent to the Pythonexpressionlen(o).
Remove the mapping for objectkey from the objecto. Return-1 onfailure. This is equivalent to the Python statementdelo[key].
Remove the mapping for objectkey from the objecto. Return-1 onfailure. This is equivalent to the Python statementdelo[key].
On success, return1 if the mapping object has the keykey and0otherwise. This is equivalent to the Python expressionkeyino.This function always succeeds.
Return1 if the mapping object has the keykey and0 otherwise. Thisis equivalent to the Python expressionkeyino. This function alwayssucceeds.
On success, return a list of the keys in objecto. On failure, returnNULL.This is equivalent to the Python expressionlist(o.keys()).
On success, return a list of the values in objecto. On failure, returnNULL. This is equivalent to the Python expressionlist(o.values()).
On success, return a list of the items in objecto, where each item is a tuplecontaining a key-value pair. On failure, returnNULL. This is equivalent tothe Python expressionlist(o.items()).
Enter search terms or a module, class or function name.