inquirer 的一项功能是让用户使用键盘箭头键从列表中进行选择,而不需要他们写下答案。通过这种方式,您可以为您的控制台应用程序实现更好的用户体验。 这是从 文档 中获取的示例: import inquirer questions = [ inquirer.List('size', message="What size do you need?", choices=['Jumbo', 'Large', 'Standar...