W3docs

Convert integer to string in Python

To convert an integer to a string in Python, use the str() function.

To convert an integer to a string in Python, use the str() function. For example:

Convert an integer to a string in Python using str function

python— editable, runs on the server

This will output the string "42".

You can also use the format() function to convert an integer to a string, like this:

Convert an integer to a string in Python using format method

python— editable, runs on the server

This will also output the string "42".

If you want to convert an integer to a string with a specific base (such as binary or hexadecimal), you can use the format() function like this:

Convert an integer to a string in Python using a specific base and format function

python— editable, runs on the server

This will output the strings "101010" and "2a", respectively.