Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any short way to achieve what APT does in Python ?

I mean, when the package manager prompts a yes/no question followed by "[Yes/no]".

The scripts accepts YES/Y/yes/y or "enter" (defaults to Yes as hinted by the capital)

The only thing I find in the official doc is input/raw_input..

I know it's not that hard to emulate, but it's annoying to rewrite :|

share|improve this question
1  
In Python 3, raw_input() is called input(). – Tobu Dec 2 '12 at 17:24

4 Answers

up vote 29 down vote accepted

As you mentioned, the easiest way is to use raw_input(). There is no built-in way to do this. From Recipe 577058:

import sys

def query_yes_no(question, default="yes"):
    """Ask a yes/no question via raw_input() and return their answer.

    "question" is a string that is presented to the user.
    "default" is the presumed answer if the user just hits <Enter>.
        It must be "yes" (the default), "no" or None (meaning
        an answer is required of the user).

    The "answer" return value is one of "yes" or "no".
    """
    valid = {"yes":True,   "y":True,  "ye":True,
             "no":False,     "n":False}
    if default == None:
        prompt = " [y/n] "
    elif default == "yes":
        prompt = " [Y/n] "
    elif default == "no":
        prompt = " [y/N] "
    else:
        raise ValueError("invalid default answer: '%s'" % default)

    while True:
        sys.stdout.write(question + prompt)
        choice = raw_input().lower()
        if default is not None and choice == '':
            return valid[default]
        elif choice in valid:
            return valid[choice]
        else:
            sys.stdout.write("Please respond with 'yes' or 'no' "\
                             "(or 'y' or 'n').\n")
# Usage example

>>> query_yes_no("Is cabbage yummier than cauliflower?")
Is cabbage yummier than cauliflower? [Y/n] oops
Please respond with 'yes' or 'no' (or 'y' or 'n').
Is cabbage yummier than cauliflower? [Y/n] y
>>> True
share|improve this answer
elif choice in valid: And I'd probably return a boolean. – Ignacio Vazquez-Abrams Jun 15 '10 at 1:22
Good choice Ignacio, amending – fmark Jun 15 '10 at 1:33
Actually, there is a function strtobool in the standart library: docs.python.org/2/distutils/… – Alexander Artemenko Jan 11 at 8:43

I'd do it this way:

# raw_input returns the empty string for "enter"
yes = set(['yes','y', 'ye', ''])
no = set(['no','n'])

choice = raw_input().lower()
if choice in yes:
   return True
elif choice in no:
   return False
else:
   sys.stdout.write("Please respond with 'yes' or 'no'")
share|improve this answer

A very simple (but not very sophisticated) way of doing this for a single choice would be:

msg = 'Shall I?'
shall = True if raw_input("%s (y/N) " % msg).lower() == 'y' else False

You could also write a simple (slightly improved) function around this:

def yn_choice(message, default='y'):
    choices = 'Y/n' if default.lower() in ('y', 'yes') else 'y/N'
    choice = raw_input("%s (%s) " % (message, choices))
    values = ('y', 'yes', '') if default == 'y' else ('y', 'yes')
    return True if choice.strip().lower() in values else False
share|improve this answer

There is a function strtobool in Python's standart library: http://docs.python.org/2/distutils/apiref.html?highlight=distutils.util#distutils.util.strtobool

You can use it to check user's input and transform it to True or False value.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.