Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7765699
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:13:45+00:00 2026-06-01T15:13:45+00:00

I am trying to open a worksheet in XL. The worksheet could be named

  • 0

I am trying to open a worksheet in XL. The worksheet could be named as ‘Map’, ‘map’ or ‘MAP’

This is what I am doing

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

This looks pretty clunky… is there a more pythonic way of doing this

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T15:13:47+00:00Added an answer on June 1, 2026 at 3:13 pm

    While it is not exactly as readable as some other methods, probably the shortest way is to use:

    sheet = book.sheet_by_name(list(set(['map', 'Map', 'MAP']) & set(book.sheet_names())[0])
    

    Basically, this uses the concept of list intersection presented via another SO answer. Probably an easier way to create this so it easier to read:

    possibleNames = ['map', 'Map', 'MAP']
    sheetNames = book.sheet_names()
    name = intersect(possibleNames, sheetNames)
    if len(name) < 1:
        print "Error"
        # break program appropiately
    sheet = book.sheet_by_name(name[0])
    
    def intersect(a, b):
        return list(set(a) & set(b))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to open a file for input in Excel with this line :
I'm trying to use SqlBulkCopy as per the example in Import Excel Spreadsheet Data
I'm trying to translate an Excel spreadsheet to CSV using the Python xlrd and
I'm trying to solve this problem that I have in my application. I'm doing
I'm trying to open/load an XML file specified in an Excel worksheet in the
I'm trying to write an app that will open an excel spreadsheet find the
I am trying open a new window using url.Action. And the new Window url
I am trying open a very large file in Emacs and it fails to
I´m trying to open a tab using jquery, here is my code: $(#ecContenedorFolders).tabs({ tabTemplate:
I trying to open C: directly with FileStream without success: new FileStream(C:, FileMode.Open, FileAccess.Read,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.