- What are operators?
Operators are symbols that allow you to “operate” with values.
- What binary operators do you know?
Binary operators are those that require two values; for example, + add, - substract, * multiply, / divide, ** raise to power, % modulus, == equal, > greater than, < less than, etc.
- What logical operators do you know?
&& and, || or, ! not