I\'m trying to write a list of strings like below to a file separated by the given delimiter.
res = [u\'123\', u\'hello world\']
When I try
Do you need the csv lib? Just join the strings...
>>> res = [u'123', u'hello'] >>> print res [u'123', u'hello'] >>> print " ".join(res) 123 hello