/:'builtin_function_or_method'和'int'不支持的操作数类型

时间:2013-10-17 08:28:17

标签: python

x = difference.total_seconds
if difference < timedelta(minutes=60):
    minutes = int(x/60) % 60
    return "%i minutes ago" % minutes

为什么我

  

/:'builtin_function_or_method'和不支持的操作数类型   'INT'

我该如何解决?

2 个答案:

答案 0 :(得分:7)

total_secondsa method,因此您应该致电:

x = difference.total_seconds()

答案 1 :(得分:1)

你的差异.total_seconds是一个builtin_function_or_method。你可以尝试:

x = difference.total_seconds()