我如何使用python从下拉菜单中获取信息并添加到数组中?

bihw5rsg  于 2023-01-22  发布在  Python
关注(0)|答案(1)|浏览(130)

我有许多字段需要填写。但是其中一个我使用了下拉菜单,我不确定如何检索数据。对于输入字段,我只使用.get(),然后将它们粘贴到数组中。

OPTIONS = [
    "What was my first pets name?",
    "What was your favorite food as a child?",
    "What was the make of your first car?",
    "What is your mother's maiden name?"
    ]

    variable = StringVar(fp_frame)
    variable.set(OPTIONS[0]) # default value

    w = OptionMenu(fp_frame, variable, *OPTIONS)
    w.place(x=660,y=425,width = 240, height = 28)

这是我的下拉菜单的代码。

w8rqjzmb

w8rqjzmb1#

尝试查看this,因此使用以下代码:

str(combo.current())

这个有用吗?

相关问题