InterviewSolution
Saved Bookmarks
| 1. |
What are the different types of operator used in python? Explain with examples |
|
Answer» operator is a symbol that PERFORMS an operation on one or more operands. An operand is a VARIABLE or a value on which we perform the operation.Python Operator falls into 7 CATEGORIES:Python Arithmetic OperatorPython Relational OperatorPython ASSIGNMENT OperatorPython Logical OperatorPython Membership OperatorPython Identity OperatorPython Bitwise Operator |
|