标签: python sum int callable
这是我的代码:
even = (i for i in range(20) if i % 2 == 0) sum(even)
当我尝试运行它时,出现以下错误,而不是90:
TypeError:“ int”对象不可调用
我在代码中做错了什么?