我有一个看起来像这样的字符串:
text = "Text1 Text2 Text3 Text4 Text5\n
Here comes more test text\n
and even more1 more2 more3\n
tex text textt te tex\n
1 2 3 4 5
..."
如您所见,数据由一个空格字符分隔(并且一行中正好有 5 个“文本”(我的意思是字符串)。我想写一个 CSV 表来使数据看起来不错。所以它看起来像那:
Col1 2 3 4 5
Text1 Text2 Text3 Text4 Text5
Here comes more test text
and even more1 more2 more3
tex text textt te tex
1 2 3 4 5
应该有 5 列,每个字符串都应该在一个单元格中。我怎样才能做到这一点?