Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.api.types.is_dict_like

pandas.api.types.is_dict_like(obj)[source]

Check if the object is dict-like.

Parameters:
obj : The object to check.
Returns:

is_dict_like : bool

Whether obj has dict-like properties.

Examples

>>> is_dict_like({1: 2})
True
>>> is_dict_like([1, 2, 3])
False
Scroll To Top