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 6754769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:19:13+00:00 2026-05-26T13:19:13+00:00

How can I go about installing as a class variable a table that contains

  • 0

How can I go about installing as a class variable a table that contains the entry points to the methods?

For clarification, consider the following -working- code:

class A(object):

    def go(self, n):
        method = self.table[n]
        method(self)

    def add(self):
        print "add"

    def multiply(self):
        print "multiply"

    table = {
        1: add,
        2: multiply,
        }

>>> q = A()
>>> q.go(1)
add

However, I don’t like it much. I would like to have the table at the beginning for readability (the real world project is much bigger) and I don’t like the call using method(self). I think it’s very confusing.

My question is: Is there a better way or is the above code spot-on?

Thank you.

  • 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-05-26T13:19:13+00:00Added an answer on May 26, 2026 at 1:19 pm

    It already contains one. It’s called __dict__.

    class foo(object):
        def go(self, method):
            getattr(self, method)()
    
        def a(self):
            ...
    
        def b(self):
            ...
    

    If you reaaaally want numeric indices, you can do e.g.

    class foo(object):
        methods = { 1: 'a', 2: 'b' }
        def go(self, n):
            getattr(self, self.methods[n])()
    

    But that’s just silly, especially that strings are interned and using magic integers in place of them doesn’t buy you much, except for obscurity.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It seems that all of the documentation I can find about OpenGL-ES says something
I have tried installing the Consolas font pack so that I can use it
As a relative newbie I try to read as much as I can about
You can read about the 64-bit calling convention here . x64 functions are supposed
can anyone point to a site or describe how I can go about designing
Does anyone know how I can go about hiding the tab selectors for the
I am wondering how I can go about stopping a dialog from opening if
How can I go about generating a Friendly URL in C#? Currently I simple
How can I go about storing a vb.net user defined object in a sql
How can I go about hosting flash content inside a WPF form and still

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.