# 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,
) -> str
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `data` | `dict` | Yes | The dictionary to stringify. |

## Returns

`str`

The stringified dictionary.

---

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