

InterviewSolution
Saved Bookmarks
1. |
What is an expression consisting of values for performing calculations using suitable operators |
Answer» Operators are SPECIAL symbols in PYTHON that carry out arithmetic or logical computation. The value that the operator operates on is called the OPERAND. Here, + is the operator that performs addition. 2 and 3 are the operands and 5 is the output of the operation. |
|