# How to convert integer to string in Python?

In Python, you can convert an integer to a string by using the `str()` function. For example:

```python
x = 5
y = str(x)
print(y)
```

The output of this code will be the string "5".

Another way to convert integer to string is using the `format()` function.

```python
x = 5
y = "{}".format(x)
print(y)
```

This method can be useful when you have to place the value of an integer variable in a string.