如何获取gtk.ListStore的项目数/行数/长度/数量

时间:2014-06-29 23:17:50

标签: python gtk pygtk

考虑这个例子:

import pygtk
pygtk.require('2.0')
import gtk

initarr = [ "aa", "bb", "xx" ]

liststore1 = gtk.ListStore(str)
for item in initarr:
  liststore1.append([item])

# one more:
liststore1.append(["whatever"])

# how to get length/size of liststore1 at this point?

正如评论所说 - 如何在此代码末尾获得liststore1的长度/大小?

1 个答案:

答案 0 :(得分:2)

只需print len(liststore1)

计算列表中的特定项目:

l = ["foo","foo","bar"]
print l.count("foo")
2