如何迭代两个列表?
我正在尝试在 pyGTk 中做一些事情,在其中构建 HBox 列表:
self.keyvalueboxes = []
for keyval in range(1,self.keyvaluelen):
self.keyvalueboxes.append(gtk.HBox(False, 5))
但是然后我想遍历该列表并分配 A 文本条目 &每个标签都存储在一个列表中。
I am trying to do something in pyGTk where I build a list of HBoxes:
self.keyvalueboxes = []
for keyval in range(1,self.keyvaluelen):
self.keyvalueboxes.append(gtk.HBox(False, 5))
But I then want to run over the list and assign A text entry & a label into each one both of which are stored in a list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的列表长度相等,请使用 zip
If your list are of equal length use zip
查看 http://docs.python.org/library/functions.html#zip。它允许您同时迭代两个列表。
Check out http://docs.python.org/library/functions.html#zip. It lets you iterate over two lists at the same time.