sheet.ncols sheet.nrows
会给列和行计数.openpyxl中有没有这样的方法?
版本1.x.x语法
rows = sheet.nrows columns = sheet.ncols
版本0.x.x语法
rows = sheet.max_row columns = sheet.max_column