# stringify_value

> **Function** in `langchain_core`

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

Stringify a value.

## Signature

```python
stringify_value(
    val: Any,
) -> str
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `val` | `Any` | Yes | The value to stringify. |

## Returns

`str`

The stringified value.

---

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