This is a simple python module to ask a yes/no question to the user
Use pip command to install it:
pip install simplequestions
from simplequestions import question
answer = question('Do you like it ?', 'n')
simplequestions.question(text, default='y')
Ask a question to the user
Parameters:
text: The question to the user default: Default answer ('y' or 'n')