Select
A select widget that allows a single selection from a list of choices.
Example
from inquirer_textual import prompts
if __name__ == '__main__':
answer = prompts.select('Planet:', ['Mercury', 'Venus', 'Earth', 'Mars',
'Jupiter', 'Saturn', 'Uranus', 'Neptune'], mandatory=False)
print(answer)
