我注意到有时会发生这种情况,通常我会切换到 lambda,但想知道我在做什么导致它:
AttributeError: 'functools.partial' object has no attribute '__module__'
出现:
def f(div, x):
total = 0
for row in x.iterrows():
if row["DEPARTMENT DESC"] in div:
total += row["TOTAL DIR COST"]
调用使用:functools.partial(f,room)
我将非常感谢任何帮助!