0

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.

2 Answers 2

3
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 * (3 + 990)/2
Sign up to request clarification or add additional context in comments.

Comments

1

If you are looking for multiplication, the symbol to use is *:

sum1 = 330*(3 + 990)/2
          ^ THIS

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.