如何将表格中的表格/数组导出到具有相同格式的csv / excel文件中?

时间:2019-02-27 02:26:17

标签: python arrays excel csv

请参见以下图片: html code python output and code

导出时可以很容易地更改表/数组格式,有什么解决方法可以使表/数组格式保持完整?

部分python代码:

Content = driver.find_elements_by_id('data')
    for Table in Content:
        print(Table.text)

1 个答案:

答案 0 :(得分:0)

首先,从表中读取数据。您可以使用regular expressionsstring.split()或其他方法将Table.text分离为其组成部分(例如python dict或2D列表)。

然后,您可以使用python's csv library将2D列表输出为csv文件,也可以查看the several python libraries that interface with MS Excel以输出具有相同数据的Excel电子表格。