Operators Flashcards
0
Q
-
A
subtract
1
Q
+
A
add
2
Q
*
A
multiply
4
Q
**
A
Exponent - Performs exponential (power) calculation on operators
5
Q
/
A
Division
6
Q
//
A
Floor Division - The division of operands where any digit after decimal point are removed.
9//2 = 4
6
Q
<
A
less than
7
Q
%
A
Modulus - Divides left hand operand by right hand operand and returns remainder
8
Q
>
A
greater than
9
Q
<=
A
less than or equal to
10
Q
> =
A
greater than or equal to
11
Q
==
A
equal to
12
Q
!=
A
not equal to
13
Q
( )
A
parathesis
15
Q
( )
A
parenthesis for strings ??