I have a nested list containing ~ 30,000 subscriptions, each with three entries, e.g.
nested_list = [['x', 'y', 'z'], ['a', 'b', 'c']].
I want to create a function to output this data construct in tab delimited format, e.g.
x y z
a b c
Any help is much appreciated!
Thanks in advance, Seafoid.
source
share