gpt4 book ai didi

python - 检查列表是否包含类型?

转载 作者:太空狗 更新时间:2023-10-29 18:19:11 25 4
gpt4 key购买 nike

检查列表中是否存在特定类型的最快方法是什么?

我希望我能做到以下几点:

class Generic(object)
... def ...
class SubclassOne(Generic)
... def ...
class SubclassOne(Generic)
... def ...

thing_one = SubclassOne()
thing_two = SubclassTwo()
list_of_stuff = [thing_one, thing_two]

if list_of_stuff.__contains__(SubclassOne):
print "Yippie!"

编辑:试图留在 python 2.7 世界中。但是3.0的解决方案就可以了!

最佳答案

if any(isinstance(x, SubclassOne) for x in list_of_stuff):

关于python - 检查列表是否包含类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32705826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com