-3

如何检查是否有对象位于 2D 列表的特定索引中?

我想访问该对象并将其作为另一个对象的参数发送出去。

此对象与 2D 列表不在同一类中,但它在导入的类中。

4

2 回答 2

3

你能做的是

try :
    if my_array[i][j] : #Checks if the array contains something not empty
        if isinstance(my_array[i][j], YourObjectType) :
            print "We have a type YourObjectType at position %d, %d" % (i, j)
except : 
    print "Ouch, nothing in the position %d,%d" % (i, j)
于 2012-10-16T00:19:50.770 回答
1

假设__eq__为这个对象正确定义了,那么你可以这样做:

myObjInstance in itertools.chain.from_iterable(my2dList)

或者,如果这更符合您的要求:

假设您要检查外部索引x和内部索引y

try:
    if isinstance(my2dList[x][y], MyObjectClass):
        print "Yay! there's a MyObjectClass object there. Sending it off as a param to the other function now…"
        myOtherFunction(my2dList[x][y])
    else:
        print "Yay! there's an object there"
except IndexError:
    print "Boo! no object there"
于 2012-10-16T00:20:20.693 回答