Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I am trying to make an arithmetic sequence in python with the following code:
sum1 = 330(3 + 990)/2
However, I get the following error:
TypeError: "'int' object is not callable"
How should I do this correctly? Thanks in advance.
330(
Thinks you are trying to call a function on 330, which is an int. If you're trying to multiply, it should be:
330
int
330 * (3 + 990)/2
Add a comment
If you are looking for multiplication, the symbol to use is *:
*
sum1 = 330*(3 + 990)/2 ^ THIS
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.