gpt4 book ai didi

python - 打开pyxl。 Max_columns 给出错误

转载 作者:太空宇宙 更新时间:2023-11-04 10:09:04 24 4
gpt4 key购买 nike

我使用的是 openpyxl-2.4.0-b1 和 Python 版本 34。以下是我的代码:

从 openpyxl 导入 load_workbook从 openpyxl 导入工作簿

filename= str(input('Please  enter the filename name, with the entire path and extension: '))
wb = load_workbook(filename)
ws = wb.worksheets[0]
row_main = 1

#Main Program starts here. Loop for the entire file
print ('Col =', ws.max_column())
while (row_main <(ws.max_row())): #Process rows for each column
print ('ROW =', row_main)
row_main += 1

遇到错误:追溯(最近一次通话): print ('Col =', ws.max_column())TypeError: 'int' 对象不可调用

我不能使用 get 因为它已被弃用。提前谢谢了。

最佳答案

因为max_column属性,所以直接用名字来获取它的值:

print('Col =', ws.max_column)

也适用于 max_row:

while (row_main < ws.max_row):

关于python - 打开pyxl。 Max_columns 给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39402970/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com