Couple different options # Convert List as Joining > print ",".join(str(n) for n in numbers) # Convert using Map > ', '.join(map(str, myList))