Operators Flashcards
What does the ** symbol do in Python?
It is the symbol for exponents. (not to be confused with ^)
What does the % symbol do in Python?
It is the symbol for modulo which which returns the remainder after you divided the first number by the second.
What does the // symbol do in Python?
It is the symbol for integer division which does the division but rounds down the answer to the nearest integer. (Note: It rounds down even if the answer is negative.)
What does the = symbol do in Python?
It is an assignment operator which assigns the value on the right to the name on the left. (It is not like an equal sign in maths and x = y is not the same as y = x)
What does the == symbol do in Python?
This is what in Python equivalent to what we call as an equal sign in maths (=). (Comparison Operator)