I need to join a list of items many of the items I add to the list is a integer returend value from function i.e
myList.append(munfunc())
how should i convert the returned result to string in order to join it with the list.
did i need to do the following for every integer value : myList.append (str(myfunc()) or this is not the pythonic way to solve such problem by casting.