減法
a, b = 1, 2
# Using the "-" operator:
b - a # = 1
import operator # contains 2 argument arithmetic functions
operator.sub(b, a) # = 1
可能的組合(內建型別):
int
和int
(給一個int
)int
和float
(給一個float
)int
和complex
(給一個complex
)float
和float
(給一個float
)float
和complex
(給一個complex
)complex
和complex
(給一個complex
)