我有名为Ioanv1的模块:
for i in list_holidays:
filter = df[df['date'].str.contains(i)]
new_df['date'].append(filter.date)
new_df['places_occupes'].append(filer.places_occupees)
现在我想用另一个脚本中的新数据替换person1:
...
person1={"temp_lags": [-21.96,-21.82,-21.89,-21.99]}
...
def ....
我收到TypeError:“模块”对象不可调用 你能帮我吗?
答案 0 :(得分:1)
错误消息简单明了。
Ioanv1是模块
您正在使用Ioanv1(person1)
,但不能使用。
您可能想要类似:Ioanv1.person1