1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
+
add
-
subtract
*
multiply
/
divide using float
//
divide and always round down to whole number
%
modulo
get remainder
**
exponent
! =
not equal to
augmented assignment operator
short hand way to increment
ex.
x= x+3
x += 3 —— you can do all operations talked about above
what is the order of precedence
brackets
*, /, %, +, -
<, >, <=, >=, ==, ! =
not
and
or