I want to print tabulated list, but I can't tabulate first member of list.
list = ['data', 'data','data']
print(*list, sep='\n \t')
But I get:
data
data
data
I would like to get:
data
data
data
How to tabulate first member?
print (list[0])? I really don't understand your problem, what is your desired output?-----means?