Operators Flashcards
+
add
+
add
-
subtract
*
multiply
**
exponent
/
divide
//
divide
%
modulo/modulus - get remainder
less than
>
greater than
<=
less than, equal to
> =
greater than, equal to
==
equal to value (comparison)
<>
less than or greater than
!=
not equal to (comparison)
( )
used for order of operations and arguments
[ ]
forms lists
{ }
forms dictionaries
@
decorator used to add an argument to a function
,
not sure
:
used with functions, if statements, loops and classes
.
used with certain functions to call them
;
not sure
+=
add value to variable
-=
subtract value from variable
*=
multiple value to variable
/=
divide value from variable
//=
divide value from variable
%=
modulo and reassign variable
**=
exponent and reassign
-
subtract
*
multiply
**
exponent
/
divide
//
divide
%
modulo/modulus - get remainder
less than
>
greater than
<=
less than, equal to
> =
greater than, equal to
==
equal to value (comparison)
<>
less than or greater than
!=
not equal to (comparison)
( )
used for order of operations and arguments
[ ]
forms lists
{ }
forms dictionaries
@
decorator used to add an argument to a function
,
not sure
:
used with functions, if statements, loops and classes
.
used with certain functions to call them
;
not sure
+=
add value to variable
-=
subtract value from variable
*=
multiple value to variable
/=
divide value from variable
//=
divide value from variable
%=
modulo and reassign variable
**=
exponent and reassign