Edit Excel with Python

preview_player
Показать описание
This is a brief example of how to access and update Excel (xlsx) files using Python with the openpyxl module.
Here is the example code:

from openpyxl import load_workbook

wb = load_workbook(output_file_name, data_only=True)
ws = wb['Sheet1']

Рекомендации по теме
Комментарии
Автор

Great video content. Precise, & simple - thank you

shankphadke