获取“'int' 对象不可调用”(完成)
Taking "'int' object is not callable " (Done)
希望你们都平安。我只想得到 (20^5)-(1^5)/5(20-1)
myNum = ((20**5)-(1**5))/5(20-1)
print(myNum)
我遇到了 TypeError: 'int' object is not callable
然后我改成这样;
print(((20**5)-(1**5))/5(20-1))
但我仍然遇到同样的错误。我检查了解决方案,但不明白我必须做什么。
修复:((20**5)-(1**5))/5/(20-1)
错误是你不能在这里省略乘号:5(20-1)
。
解释器认为您正在尝试调用 f(...)
之类的函数,但 5
不是函数,这就是您看到错误的原因:
TypeError: 'int' object is not callable
^^^ ^^^^^^^^
5 (20-1)
希望你们都平安。我只想得到 (20^5)-(1^5)/5(20-1)
myNum = ((20**5)-(1**5))/5(20-1)
print(myNum)
我遇到了 TypeError: 'int' object is not callable 然后我改成这样;
print(((20**5)-(1**5))/5(20-1))
但我仍然遇到同样的错误。我检查了解决方案,但不明白我必须做什么。
修复:((20**5)-(1**5))/5/(20-1)
错误是你不能在这里省略乘号:5(20-1)
。
解释器认为您正在尝试调用 f(...)
之类的函数,但 5
不是函数,这就是您看到错误的原因:
TypeError: 'int' object is not callable
^^^ ^^^^^^^^
5 (20-1)