gpt4 book ai didi

python-3.x - 如何获取 tkinter.Listbox 中项目的索引?

转载 作者:行者123 更新时间:2023-12-04 11:43:19 29 4
gpt4 key购买 nike

例如:

import tkinter as tk
x = tk.Tk()
y = tk.Listbox(x, bg="white")
y.insert(tk.END, "value1")
y.insert(tk.END, "value2")
>>>return y.index("value1")

这应该输出 0 但它只是给我一个错误,我做了一些研究,但我找不到任何东西,所以我在这里问。

最佳答案

index列表框的方法与 index 不同python列表的方法。对于列表框,它将诸如“end”或“@x,y”之类的内容转换为数字索引。

要搜索,请获取 Python 列表形式的值,然后使用 index列表方法:

index = y.get(0, "end").index("value1")

关于python-3.x - 如何获取 tkinter.Listbox 中项目的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33144919/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com