Computer Science

What are operators? Give examples of some unary and binary operators.

Python Data Handling

3 Likes

Answer

Operators are tokens that trigger some computation/action when applied to variables and other objects in an expression. Unary plus (+), Unary minus (-) are a few examples of unary operators. Examples of binary operators are Addition (+), Subtraction (-), Multiplication (*), Division (/).

Answered By

2 Likes


Related Questions