正如标题所说,我希望将Cell(x,y).value
分配给变量,以便每当我调用它时,变量会自动查看内部值(x
和y
在这种情况下)该类正在调用,以便我可以在整个程序中的多个位置使用此变量。
要了解我正在尝试做什么,这里有一个例子(我正在与Excel连接):
l1 = 1
while not Cell(l1, 6).is_empty():
if not Cell(l1, 7).is_empty():
referent = Cell(l1, 6).value
cellval = Cell(l1, i).value
for i in range(15, 22):
if i == 15:
cellval = function_call(referent)
else:
cellval = other_function_call(referent)
l1 += 1
Cell(x, y) = Cell(row,column)