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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:07:59+00:00 2026-06-09T06:07:59+00:00

I have made a Python script which calls functions based on user’s input. Until

  • 0

I have made a Python script which calls functions based on user’s input. Until now I was calling argument-less functions simply through a dict

options = { 0 : func0,
            1 : func1,
            2 : func2,
           }
options[choice]()

Now I am in a situation where I need to call a few functions with arguments. I am new to Python and I tried something like this

options = { 0 : (func0,None),
            1 : (func1,None),
            2 : (func2,foo1),
            3 : (func3,foo2),
          }
options[choice][0](options[choice][1])

I am aware why None doesn’t work here, and have written it just to symbolize that the function doesn’t take any arguments. What changes should I make in the code so that it works for all kinds of functions?

I tried unpacking empty dict but it doesn’t work either.

  • 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-09T06:08:00+00:00Added an answer on June 9, 2026 at 6:08 am

    None is still a value, and passing it to a function that is not expecting arguments will not work. Instead consider using partial here

    from functools import partial
    
    options = { 0: func0,
                1: func1,
                2: partial(func2, foo1),
                3: partial(func3, foo2),
              }
    
    options[choice]()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have made a batch script which runs a Python application. This batch script
I have just made a script in Python which will connect to my MySQL
I have a python script which I have made dropable using a registry-key, but
I have a python editor where the user is entering a script or code,
I have a PHP script which executes a shell command: $handle = popen('python last',
I have a web crawling python script running in terminal for several hours, which
Updated below: I have a script which has a function I made that calculates
I made a .pyw python script that I want to have running in the
I have a bash script that calls a program which generates a humongous amount
i have made an application having entity framewrok. It is wpf application, now it

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.