本简要指南包含有关如何使用 Python 更新 Excel 的信息,方法是提供配置环境的详细说明,然后分享执行此任务的分步过程。 更新 Excel 文件 Python 示例代码已共享,其中介绍了更新源 XLSX 文件所需的所有必要类和函数。更新任务完成后,输出文件将保存为 XLSX。此外,您可以将其保存为任何其他 MS Excel 支持的格式,如 XLS、ODS 等。
使用 Python 更新 Excel 的步骤
- 设置环境以使用 Aspose.Cells for Python 通过 Java
- 将源 Excel 文件加载到要在 Python 中更新的 Workbook 类对象中
- 访问 Cell 并更新其值
- 访问其他单元格并在其中设置公式
- 更新内容后调用Calculate函数刷新Excel文件
- 以所需格式将更新的 Excel 文件保存在磁盘上
这些步骤借助简单的待办任务列表来描述此任务。但是,您可以 使用 Python 更新 Excel 工作表,其中源文件中使用了高级和复杂的组件。要更改 Excel 文件,您必须访问所选工作表中的特定单元格,然后使用 setValue() 函数来设置所需的内容。同样,可以使用 setFormula() 函数和最后的 calculateFormula() 函数设置公式,以参考最新内容更新整个工作簿。
使用 Python 更新 Excel 工作表的代码
import jpype | |
import asposecells | |
# Start JVM | |
jpype.startJVM(convertStrings=False) | |
from asposecells.api import License, Workbook, JsonLayoutOptions, JsonUtility, SaveFormat | |
# Load the license to avoid trial version limitations and | |
# and trial watermark in the output Excel file | |
licenseToUpdateExcel = License() | |
licenseToUpdateExcel.setLicense("Aspose.Total.lic") | |
# Load the sample input Excel file where data is to be updated using Python | |
ExcelFileToUpdate = Workbook("InputWorkbookWithData.xlsx") | |
# Get access to first cell via the cells collection in the target worksheet | |
dataCell = ExcelFileToUpdate.getWorksheets().get(0).getCells().get("A1") | |
# Set some value in the target cell to test the feature | |
dataCell.setValue(10) | |
# Get another cell to set some formula in it | |
formulaCell = ExcelFileToUpdate.getWorksheets().get(0).getCells().get("C1") | |
# Set the desired formula for adding two values | |
formulaCell.setFormula("=A1+B1") | |
# Call the calculateFormula() function to update the Excel file after updating contents | |
ExcelFileToUpdate.calculateFormula() | |
# Save the output file in the desired format after updating via Python | |
ExcelFileToUpdate.save("output.xlsx", SaveFormat.XLSX) | |
# Shutdown the JVM | |
jpype.shutdownJVM() |
当我们 update Excel Python 代码在开始时导入必要的类,然后加载所需的工作簿。您可以使用指定的函数在单元格中设置值和公式;但是,您还可以操作切片器、表格、数据透视表并执行其他高级任务,例如向单元格添加注释、创建自动过滤器、实现数据验证、合并和拆分单元格以及保护/取消保护工作表。
本教程教我们如何使用 Python 更新 Excel。如果您想了解创建 Excel 文件的过程,请参阅 如何在 Python 中创建 Excel 文件 上的文章。