0

我是一个非常缺乏经验的程序员,一直在尝试在 Xlwings 中练习一些基础知识,Xlwings 是一个与 Excel 一起工作的 Python 库。我在 2.7 工作。

我制作了一个带有 GUI 的小程序,它允许您在 Excel 中的一列中简单地添加条目。我在尝试我的程序时立即注意到它会覆盖该列之前保存的值。我完全迷失在找出一个可行的解决方案,如何从具有范围的列表开始,然后继续附加到它。

from Tkinter import *
from xlwings import Workbook, Range

root = Tk()
wb = Workbook()

e1 = Entry()
e1.grid(row=1, column=2)

participant_list = [] 
"""I realize starting with an empty list will clear the range every time I
run the script, but am not sure what the correct solution should be."""

def pressed_button():

    entry = e1.get()
    e1.delete(0, END) # clear the entry widget
    temp = []
    temp.append(entry)
    participant_list.append(temp)
    Range('A1').value = participant_list
    print participant_list # just to test

b1 = Button(text="Add Participant", command=pressed_button)
b1.grid(row=2, column=2)

mainloop()

任何帮助我完成解决方案的帮助将不胜感激!我已经尝试了一些不同的东西,但是我很尴尬地无法将它们放在我的演示代码中哈。

4

1 回答 1

0

根据您要执行的操作,您可以先读取数据并将其分配给,participant_list也可以找出该列中最后使用的单元格:例如,如果没有空行,例如

rng = Range('A1').vertical.last_cell
...
Range((rng.row + 1, rng.column)).value = participant_list

可以工作。

于 2016-02-10T20:33:39.680 回答