标签: python tkinter python-3.5
有没有办法检索Listbox小部件中的项目数量?例如len()用于列表,但它不能用于Listbox,因为它会出现以下错误:
if len(listbox)==0: TypeError: object of type 'Listbox' has no len()
答案 0 :(得分:3)
要获取列表框中的项目数,您可以执行以下操作:
listbox.size()