I have two lists that I want to combine for csv output.
alist = ['a', 'b', 'c']
blist = ['d', 'e', 'f']
However, I want the output for the csv to format like this:
clist = ['a', 'b', 'c', 'd' 'e' 'f']
such that the last entry extended of the list contains the list of "blist", but will not be comma separated. Unfortunately, what I have been trying instead gives me:
clist = ['a', 'b', 'c', 'def']
