xlwings使用全局变量

时间:2016-06-20 13:10:21

标签: python matplotlib xlwings

我正在使用xlwings处理交互式Excel工作表。单击按钮时,matplotlib图将显示在活动工作表中。数据来自一个大型的csv文件。

当前的解决方案有效,但有一个问题:每次绘图时,都必须读取外部文件。所以它真的很慢。我想使用全局变量缓冲数据,但不知道如何操作。

以下是该计划的草图。

python program:

obj.cost = 10.00

print(obj.cost) # should return $10.00
print(obj.cost + 10) # should still be possible
                     # and should return 20.00 (without currency symbol,
                     #                          because it is a regular integer now)

0 个答案:

没有答案