Computer Science, asked by ashrithaakarshangogo, 9 days ago

What will be the output of the following statements?
>>>intvar=1
>>>print(intvar+2)

Answers

Answered by shrihankp
1

Answer:

3

Explanation:

intvar + 2 is 1 + 2, which is 3.

Similar questions