Given the following list:
l1=[1,2,3,4]
I would like to print out the following numbers without brackets,
1,2,3,4
without converting them to strings and without using for
loop.
Is there a way in python to accomplish that?
All my searches lead to either string conversion or generation of another list including brackets.