我正在使用模块查询器编写一些 python,并将结果作为 python 字典返回,如下所示:
{'Apps': ['Notes']}
我想知道是否有可能以'Notes'
某种方式得到一点?选择的代码如下,但我认为它不相关。
import os
import inquirer
def app_menu():
selections = [inquirer.Checkbox('Apps',
message='Please select you app',
choices=['Weather', 'Notes', 'Calculator', 'Exit'])]
app_sel = inquirer.prompt(selections)
print(app_sel.values())