Попытка использовать переменную int "row"
в качестве аргумента в строке Excelread
, чтобы я мог выполнить итерацию. Я получаю ошибки, так как Python не распознается как ввод int?
from automagica import *
Row = 2
current_run = ExcelReadCell(path="C:\\Users\\jmoloney\\Downloads\\Medicaid.xlsx", r=Row, c=1, sheet=None)
Row = Row+1
print(current_run)
Выход:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: ExcelReadCell() got an unexpected keyword argument 'r'