0

让我重新表述一下,

我的代码:

为了避免再次处理我的所有代码,SpaceTree 为每一行数据提供了 (A:B:C:A:C:D)。

 SkyTree = [SpaceTree.split(':') for x in SpaceTree]

给我这个:

[[u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D'], [u'A', u'B', u'C', u'A', u'C', u'D']]

现在我需要把那些热腾腾的烂摊子变成

[[A:B:C:D], [A:B:C:D], [A:B:C:D], [A:B:C:D], [A:B:C:D], [A:B:C:D]] 

...这样我就可以将它放入这样的电子表格中

Spreadsheet 1                      Spreadsheet 2              Master Final Sheet

Trees   Location   Birds       Trees Location     Birds           Trees  Location    Birds
1A        A,B      A:B:C       1A    A,B          A:D:C           1A        A,B    A:B:C:D
2B        A,B      C:A:B       2B    A,B          A:B:D           2B        A,B    A:B:C:D
3C        A,B      C:B:A       3C    A,B          D:B:C           3C        A,B    A:B:C:D

但是这将用于数万行数据。它还将具有某些字段,例如树高,鸟类颜色等。

4

0 回答 0