How do I print, separated by tabs, the values of all the strings in a list without prior knowledge of the number of strings in a list?
If I knew that the list has just 3 elements, I could do something like this:
l = ['A', 'B', 'C']
print "\t".join([l[0], l[1], l[2]])
And I would obtain
A B C
But I have no idea of how to do it for n
strings in a automated way