文件名称:xl
文件大小:1KB
文件格式:ZIP
更新时间:2024-03-26 09:20:45
Python
sgpyxl-openpyxl的接口- 概念 简化Excel文件(.xlsx)的典型操作 例子 import sgpyxl as xl filepath = "example.xlsx" wb = xl . SGBook ( filepath ) ws = wb . sheet ( "Sheet1" ) list1 = [ 1 , 2 , 3 ] ws . write_col ( list1 , 2 , 2 ) list2 = [] list2 = ws . get_col ( 2 , 2 ) wb . save_and_close ()
【文件预览】:
xl-main
----sgpyxl.py(3KB)
----README.md(321B)