x = difference.total_seconds
if difference < timedelta(minutes=60):
minutes = int(x/60) % 60
return "%i minutes ago" % minutes
为什么我
/:'builtin_function_or_method'和不支持的操作数类型 'INT'
我该如何解决?
答案 0 :(得分:7)
total_seconds
为a method,因此您应该致电:
x = difference.total_seconds()
答案 1 :(得分:1)
你的差异.total_seconds是一个builtin_function_or_method。你可以尝试:
x = difference.total_seconds()