arr = [1,2,3]
arr2 = [str(int) for int in arr] 
_strs = ",".join(arr2)
print(_strs)