使用 python 创建电子表格

发布于 2024-10-25 12:11:04 字数 1540 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

与之呼应 2024-11-01 12:11:04

csv 模块可以以可读的格式导出几乎所有电子表格程序都可以轻松实现。不过,从您的问题中并不清楚您想要将什么内容放入这样的文件中。

The csv module can export in a format that can be read by nearly all spreadsheet programs with little difficulty. It's not really clear from your question what you want to put in such a file, though.

纸伞微斜 2024-11-01 12:11:04

http://sourceforge.net/projects/pyexcelerator/

可用于轻松创建 Excel 文件。查看示例文件夹中的示例
在源代码树中。

http://sourceforge.net/projects/pyexcelerator/

can be used to create Excel files easily. Check out the examples from the examples folder
within the source tree.

感情旳空白 2024-11-01 12:11:04

我个人的喜好:
用于写入 Excel 文件
用于读取 Excel 文件
就到这里。

这使用 pypi。所以就更好了!

My personal preference:
For writing Excel Files
For Reading Excel Files
Just go here.

This uses pypi. So it's even better!

晒暮凉 2024-11-01 12:11:04

csv 模块可以提升您的电子表格。

假设您已读入文件内容,以下是相关电子表格的创建:

import csv

outfile = open('output.csv', 'wb')

# Done for example, a list will need to be created for each row of your spreadsheet.
filecontents = [marks,40,66,34,88,70]

fileWriter = csv.writer(outfile, dialect='excel')
fileWriter.writerow(filecontents)
outfile.close()

当然,还会有额外的读取文件和循环将多行写入 csv 文件,这只是一个基本示例。

The csv module can do your spreadsheet lifting.

Assuming you have the file contents read in, here is the relevant spreadsheet creation:

import csv

outfile = open('output.csv', 'wb')

# Done for example, a list will need to be created for each row of your spreadsheet.
filecontents = [marks,40,66,34,88,70]

fileWriter = csv.writer(outfile, dialect='excel')
fileWriter.writerow(filecontents)
outfile.close()

Of course, there will be additional reading files and loops to write more than one row to the csv file, this is just a basic example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文