Operators Flashcards

1
Q

What does the ** symbol do in Python?

A

It is the symbol for exponents. (not to be confused with ^)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the % symbol do in Python?

A

It is the symbol for modulo which which returns the remainder after you divided the first number by the second.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does the // symbol do in Python?

A

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.)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does the = symbol do in Python?

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does the == symbol do in Python?

A

This is what in Python equivalent to what we call as an equal sign in maths (=). (Comparison Operator)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly