You can use the below-mentioned code to convert an integer to string:-
>>> str(10)
'10'
>>> int('10')
10
Links to the documentation:
Conversion to a string is done with the built-in str() function, which basically calls the __str__() method of its parameter.
To know more about this you can have a look at the following video tutorial:-