考虑这个例子:
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
的长度/大小?
答案 0 :(得分:2)
只需print len(liststore1)
计算列表中的特定项目:
l = ["foo","foo","bar"]
print l.count("foo")
2