The expression a += b
is shorthand for a = a + b
, where a
and b
can be numbers, or strings, or tuples, or lists (but both must be of the same type).
The comma in ('x',)
means that this is a tuple of a single element, 'x'
. If the comma is absent, is just an 'x'
between parenthesis.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…