import math
i=0
arm_pop=float(0)
for i in range(1,16):
arm_pop=round(1000000*math.e(3*i)/(10000+100(math.e((3*i)-1))))
print(arm_pop)
<>:5: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
<>:5: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
C:\Users\pasto\AppData\Local\Temp/ipykernel_22396/4049563446.py:5: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
arm_pop=round(1000000*math.e(3*i)/(10000+100(math.e((3*i)-1))))
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_22396/4049563446.py in <module>
3 arm_pop=float(0)
4 for i in range(1,16):
----> 5 arm_pop=round(1000000*math.e(3*i)/(10000+100(math.e((3*i)-1))))
6 print(arm_pop)
7
TypeError: 'float' object is not callable
I didn't use function names, but the error comes out. How do I solve this error?