'Worksheet' 对象没有属性 'max_col'
'Worksheet' object has no attribute 'max_col'
我在其他项目中多次使用 max_col 属性,但一直出现错误 'Worksheet' object has no attribute 'max_col'
我特别困惑,因为我在它上面使用 max_row,没有错误。我查看了文档,max_col 似乎还是正确的?
#!/usr/bin/python
# excelToCSV.py - Converts all excel files in a directory to CSV, one file
# per sheet
import openpyxl
import csv
import os
for excelFile in os.listdir('.'):
#Skip non-xlsx files, load the workbook object.
if excelFile.endswith('.xlsx'):
wbA = openpyxl.load_workbook(excelFile)
#Loop through each sheet in the workbook
for sheet in wbA.worksheets: #Note: changing wb to wb.worksheets
sheetName = sheet.title
sheetA = wbA.get_sheet_by_name(sheetName)
# Create the CSV filename from the excel filename and sheet title
excelFileStripped = excelFile.strip('.xlsx')
csvFilename = excelFileStripped + '_' + sheetName + '.csv'
# Create the csv.writer object for this csv file
csvFile = open(csvFilename, 'w', newline='')
csvWriter = csv.writer(csvFile)
# Loop through every row in the sheet
maxRow = sheetA.max_row
maxCol = sheetA.max_col
属性是 max_column
而不是 max_col
(official documentation)
我在其他项目中多次使用 max_col 属性,但一直出现错误 'Worksheet' object has no attribute 'max_col'
我特别困惑,因为我在它上面使用 max_row,没有错误。我查看了文档,max_col 似乎还是正确的?
#!/usr/bin/python
# excelToCSV.py - Converts all excel files in a directory to CSV, one file
# per sheet
import openpyxl
import csv
import os
for excelFile in os.listdir('.'):
#Skip non-xlsx files, load the workbook object.
if excelFile.endswith('.xlsx'):
wbA = openpyxl.load_workbook(excelFile)
#Loop through each sheet in the workbook
for sheet in wbA.worksheets: #Note: changing wb to wb.worksheets
sheetName = sheet.title
sheetA = wbA.get_sheet_by_name(sheetName)
# Create the CSV filename from the excel filename and sheet title
excelFileStripped = excelFile.strip('.xlsx')
csvFilename = excelFileStripped + '_' + sheetName + '.csv'
# Create the csv.writer object for this csv file
csvFile = open(csvFilename, 'w', newline='')
csvWriter = csv.writer(csvFile)
# Loop through every row in the sheet
maxRow = sheetA.max_row
maxCol = sheetA.max_col
属性是 max_column
而不是 max_col
(official documentation)