There are less satisfying Q/A for what I am asking but none that actually answer the question. Suppose one has
a=1; b={2,3}; And one wants to print a sequence of numbers a, b, c without curly brackets. Then if one prints
Print[a,", ",b] One obtains
1, {2,3}
One solution to this is to print
Print[a,", ",b[[1]],", ",b[[2]]] Then one obtains
1, 2, 3
What is going on is that the only way to get rid of the curly brackets in a list is to extract single values from that list. So that single value extraction by parts is a solution to my question but not an efficient one for a longer list like
b={2,3,4,5,6,7,8,9,10,11,12,13,14} So now the question. Is their a more efficient way to print a longer list without the curly brackets?

Print @@ Riffle[Prepend[b, a], ", "]orPrint[Fold[# <> ", " <> ToString[#2] &, ToString[a], b]]? $\endgroup$Print @@ Riffle[Prepend[b, a], ", "]as an answer, please? $\endgroup$