Home » Backend » Python » – (subtraction)
This - (subtraction) arithmetic operator returns the difference between the two expressions.
-
A - B
Here, A and B are called operands and '-' is a subtraction operator.
'-'
>>> 10 - 3 7 >>> 9.0 - 2 7.0 >>> 14 - 1.0 13.0