How can I convert each item in the list to string, for the purpose of joining them? [duplicate]
Calling str(…) is the Pythonic way to convert something to a string. You might want to consider why you want a list of strings. You could instead keep it as a list of integers and only convert the integers to strings when you need to display them. For example, if you have a list of … Read more