I'm using openpyxl and I want to retrieve data. The following line
我正在使用openpyxl,我想要检索数据。以下行
cell_name_Target = ws.cell(row = 0, column = ColT).value
gives me an error message:
给我一个错误信息:
TypeError: argument of type 'NoneType' is not iterable"
TypeError:类型为'NoneType'的参数不可迭代“
How can I get the data from specific row and column into a variable?
如何将特定行和列中的数据转换为变量?
1 个解决方案
#1
openpyxl uses 1-based indexing for rows and columns.
openpyxl对行和列使用基于1的索引。
#1
openpyxl uses 1-based indexing for rows and columns.
openpyxl对行和列使用基于1的索引。