从python中的类列表中随机选择x个项目

时间:2012-09-19 19:57:14

标签: python list class random jython

在jython中,我有一类像这样定义的对象:

class Item:
  def __init__(self, pid, aisle, bay, hits, qtyPerOrder):
    self.pid = pid
    self.aisle = int(aisle)
    self.bay = bay
    self.hits = int(hits)
    self.qtyPerOrder = int(qtyPerOrder)

我已经创建了一个名为“list”的类列表,该类列表中的项目有4000行,如下所示:

'PO78141', 13, ' B ', 40

我正在尝试随机选择一个名为x的3和20范围内的数字。然后,代码将在列表中选择x行。

例如:如果x = 5,我希望它返回:

'PO78141', 13, ' B ', 40
'MA14338', 13, ' B ', 40
'GO05143', 13, ' C ', 40
'SE162004', 13, ' F ', 40
'WA15001', 13, ' F ', 40

修改 好的,这似乎有效。但是,它将返回此< main .Item对象,位于0x029990D0>。如何让它以上述格式返回?

3 个答案:

答案 0 :(得分:12)

您可以使用random module同时选择一个介于3到20之间的数字,然后选择一行代码:

import random

sample_size = random.randint(3, 20)
sample = random.sample(yourlist, sample_size)

for item in sample:
    print '%s, %d, %s, %d' % (item.pid, item.aisle, item.bay, item.hits)

答案 1 :(得分:0)

备注 - 我将列表重命名为lst。假设您有一个对象列表,请尝试以下操作:

from random import randint
for item in lst[:randint(3, 20)]:
    (item.pid, item.aisle, item.bay, item.hits)

答案 2 :(得分:-1)

i = 0
while i < randint(3, 20):
    # Display code here.
    i += 1