gpt4 book ai didi

python - int 对象不可调用错误

转载 作者:太空宇宙 更新时间:2023-11-04 10:57:14 24 4
gpt4 key购买 nike

我正在尝试这个例子:

enter image description here

p = 10000
n = 12
r = 8
t = int(input("Enter the number of months the money will be compounded "))

a = p (1 + (r/n)) ** n,t

print (a)

.. 但错误是:

TypeError: 'int' 对象不可调用

Python 是否将 p 视为函数?如果是这样,我不导入模块就无法做到这一点吗?

谢谢!

最佳答案

将行改为

a = p * (1 + (r/n)) ** (n * t)

Python 不会将彼此相邻的变量解释为相乘(它也不会将 n, t 解释为相乘。

关于python - int 对象不可调用错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8814578/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com