我正在尝试在 XL 中打开工作表。工作表可以命名为“地图”、“地图”或“地图”
这就是我正在做的
import xlrd
book = xlrd.open_workbook(xls) // where xls is the name of the spreadsheet
try:
sheet = book.sheet_by_name('map')
except:
try:
sheet = book.sheet_by_name('Map')
except:
try:
sheet = book.sheet_by_name('MAP')
except:
raise
这看起来很笨重......有没有更pythonic的方式来做到这一点