gpt4 book ai didi

python - 如何在 XLWings 中引用 Excel 表格列名称?

转载 作者:行者123 更新时间:2023-12-01 04:01:38 24 4
gpt4 key购买 nike

XLWings 是否允许我通过表和列名称与 Excel 表格(在 Excel 2007 及更高版本中通过菜单或 ctrl+t 提供)进行交互?这确实存在于年轻的开源项目 Pyvot ( https://pypi.python.org/pypi/Pyvot ) 中。我希望 XLWings 现在可以实现这一点,或者 XLWings 将添加该功能,特别是因为这个开源项目可以作为模型使用。

这是来自 https://pythonhosted.org/Pyvot/tutorial.html 的示例。 “Pyvot 专门识别表和自动过滤器中的列名称。Pyvot 将在工作簿中的所有表中搜索给定的列名称。”下面的示例会将“城市”列中可见单元格的值返回到列表。

import xl
wb = xl.Workbook(r"c:\temp\cities.xlsx")
wb.get("City").get() #get the column named City

最佳答案

方括号访问工程,参见例如here :

例如获取特定列的数据:

import xlwings as xw
wb = xw.Workbook.active()
xw.Range('TableName[ColumnName]').value

或者要获取包括标题和总计行的列,您可以这样做:

xw.Range('TableName[[#All], [ColumnName]]').value

关于python - 如何在 XLWings 中引用 Excel 表格列名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36392633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com