2

我是一个只有 VBA 经验的非程序员。我接受了自动化公司中一些日常任务的挑战,并选择了 Python 3.4 来完成它(不确定是否是最佳选择)。

我需要做的脚本相当简单。他们只需要从 .txt 文件中读取值、执行计算并在 .xls 模板中写入值。

我在 stackoverflow 中阅读了一些主题并开始关注这两个主题:

  1. 有没有可行的方法在 excel 中写入数据(COM 自动化,Python 3 包)?

  2. 我可以将 Python 3.4 编译成 .exe 文件吗?用户不能在他们的桌面上安装东西。

我可以在 VBA 中编写这样的脚本,但我需要一个所有人都可以使用的可执行文件。

4

1 回答 1

2

You can use the following tools:

  1. XlsWriter https://xlsxwriter.readthedocs.org/

  2. Or Use Py2Exe to convert to a python script to executable http://www.py2exe.org/

Or if your looking to use a '.csv' file, there are built in libraries for that, which are pretty straightforward

于 2014-07-24T19:51:18.983 回答