Python 3 - 获取Listbox小部件中的项目数量

时间:2017-10-05 09:27:10

标签: python tkinter python-3.5

有没有办法检索Listbox小部件中的项目数量?例如len()用于列表,但它不能用于Listbox,因为它会出现以下错误:

if len(listbox)==0:
TypeError: object of type 'Listbox' has no len()

1 个答案:

答案 0 :(得分:3)

要获取列表框中的项目数,您可以执行以下操作:

listbox.size()