加成

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

可能的組合(內建型別):

  • intint(給一個 int
  • intfloat(給一個 float
  • intcomplex(給一個 complex
  • floatfloat(給一個 float
  • floatcomplex(給一個 complex
  • complexcomplex(給一個 complex

注意:+運算子也用於連線字串,列表和元組:

"first string " + "second string"    # = 'first string second string'

[1, 2, 3] + [4, 5, 6]                # = [1, 2, 3, 4, 5, 6]