contains_key method

contains_key

Determines does this dictionary contasins specified key.

Returns

true if key is found.

def contains_key(self, key):
    ...
ParameterTypeDescription
keystrKey to search in the dictionary.

See Also