Converting data types is a common task in programming. In Python, we often need to convert integers to strings – for example, to display a number in a certain format or concatenate it with other ...
Your code will have to explicitly convert the integer to a string, because Python cannot do this automatically. (Converting data types will be explained in Dissecting Your Program when talking about ...