该类Itinerary
通过将各个字典随机组合来生成字典destinations
。它还会根据概率生成日期startTime
。
这是我的代码:
class Itinerary:
def __init__(self, destinations, startTime):
self.destinations = {**a, **np.random.choice([b1,b2]), **np.random.choice([c1,c2,c3,c4]),
**np.random.choice([d1,d2,d3]), **np.random.choice([e1,e2]), **f1, **g,
**np.random.choice([h1,h2,h3]), **i}
self.startTime = datetime(year = 2020,
month = np.random.choice(list(range(1,13)), p = [0.0657, 0.0755,
0.081, 0.067,
0.0751, 0.1031,
0.1178, 0.1155,
0.0858, 0.0806,
0.0655, 0.0674]),
day = np.random.choice(list(range(1,30))),
hour = np.random.choice([9,12], p = [0.3, 0.7]))
但是,当我运行此命令时:
x = Itinerary(destinations, startTime)
print(x.destinations, 2*'\n', x.startTime)
它返回:
NameError: name 'destinations' is not defined
它实际上今天早些时候可以工作,但是后来我关闭了它,然后重新打开它,然后出现了错误。
答案 0 :(得分:0)
如果__init__
函数不需要两个参数,而这些参数是在构造函数本身内部生成的。
因此签名可以是:
def __init__(self): # no params in constructor
然后呼叫可能是:
x = Itinerary()