加成
a, b = 1, 2
# Using the "+" operator:
a + b # = 3
# Using the "in-place" "+=" operator to add and assign:
a += b # a = 3 (equivalent to a = a + b)
import operator # contains 2 argument arithmetic functions for the examples
operator.add(a, b) # = 5 since a is set to 3 right before this line
# The "+=" operator is equivalent to:
a = operator.iadd(a, b) # a = 5 since a is set to 3 right before this line
可能的組合(內建型別):
int
和int
(給一個int
)int
和float
(給一個float
)int
和complex
(給一個complex
)float
和float
(給一個float
)float
和complex
(給一個complex
)complex
和complex
(給一個complex
)
注意:+
運算子也用於連線字串,列表和元組:
"first string " + "second string" # = 'first string second string'
[1, 2, 3] + [4, 5, 6] # = [1, 2, 3, 4, 5, 6]