gpt4 book ai didi

python - 在 Python 中生成具有不同属性的新对象实例

转载 作者:太空宇宙 更新时间:2023-11-04 02:28:20 24 4
gpt4 key购买 nike

好的。我正在建立一个模型来描述一些管理决策对森林的影响。每个森林都是森林类的一个实例,您可以在下面看到一个简化版本:

class forest():
instancelist = [] # a list of all the forest instances so I can run functions on all of them at once

growth_rate = 2 #very simple rate of growth (not realistic!)
felling_year = 50 #all forest areas are felled at age 50

def __init__(self, x=0, y=0,age=0,size=0):
self.instancelist.append(self) # add the forest area to the instance list
self.x = x # x coordinate
self.y = y # y coordinate
self.age = age # age, not all forests are planted on bare sites, - we have some pre-existing ones to consider.
self.size = size # very rough - but this is an indicator of the physical volume of timber (not area)

我现在可以生成一个森林对象,例如:

f = forest(1,1,20,40)

所以,我遇到的困难是我需要生成一些森林 block (这样我们就可以看到对更广阔区域的影响)。为此,我需要创建很多区域。

如果我不指定任何属性,我可以很容易地做到这一点:

forests = [forest() for x in range(20)]

但我看不出如何在不手动指定所有区域的情况下生成大量区域,每个区域都具有独特的属性。我可以使用一种方法从其他来源(列表、元组、csv 等)输入数据并使用它来构建不同对象的 list 吗?

抱歉,如果这是一个愚蠢的问题(众所周知,我会不时问他们),但这真的让我感到困惑。

最佳答案

如果您将属性存储在列表列表中,这是一种方法:

class Forest(object):
def __init__(self, w, x, y, z):
self.w = w
self.x = x
self.y = y
self.z = z
return None

properties = [[1, 2, 3, 4],
[5, 6, 7, 8],
[9, 10, 11, 12],
[13, 14, 15, 16],
[17, 18, 19, 20]]

forests = [Forest(*p) for p in properties]

print(forests[1].x) # 6

关于python - 在 Python 中生成具有不同属性的新对象实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49819194/

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