gpt4 book ai didi

python - 获取实例列表的属性

转载 作者:行者123 更新时间:2023-11-30 23:02:54 31 4
gpt4 key购买 nike

我需要在循环内使用实例属性列表,但我找不到解决方案。名单如下:

widths = 
[<__main__.MIZ_info instance at 0x7f6936fc7368>,
<__main__.MIZ_info instance at 0x7f6936ce6d40>,
<__main__.MIZ_info instance at 0x7f6936c4ca28>,
None,
<__main__.MIZ_info instance at 0x7f6936994998>,
<__main__.MIZ_info instance at 0x7f69368d69e0>,
<__main__.MIZ_info instance at 0x7f6936704638>,
None]

现在每个实例都有几个属性(width.property1、width.property2 等),我需要在列表中收集其中一些属性。我尝试了以下方法但没有成功:

for n,en in enumerate(widths):
list1.append(en.property1)
list2.append(en.property2)

我遇到过:

AttributeError: 'NoneType' object has no attribute 'property1'

看起来很简单的问题,但我仍然在努力解决!请帮忙。

谢谢。

最佳答案

发生这种情况是因为 widths 中有 None 项,并且 None 没有属性 en.property1。您可以通过检查 None 来修复此问题。

for n, en in enumerate(widths):
if en is not None:
list1.append(en.property1)
list2.append(en.property2)
else:
# do something when en is None

关于python - 获取实例列表的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34272397/

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