# stringify_dict

> **Function** in `langchain_core`

📖 [View in docs](https://reference.langchain.com/python/langchain-core/utils/strings/stringify_dict)

Stringify a dictionary.

## Signature

```python
stringify_dict(
    data: dict[Any, Any],
) -> str
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `data` | `dict[Any, Any]` | Yes | The dictionary to stringify. |

## Returns

`str`

The stringified dictionary.

---

[View source on GitHub](https://github.com/langchain-ai/langchain/blob/01d8481ae3d457ec3751cbb0331ea3a4b720fa90/libs/core/langchain_core/utils/strings.py#L25)