This is a python function. From Python Tutorial :
A value can be assigned to several variables at the same time:
>>> x = y = z = 0
>>> x
0
>>> y
0
>>> z
0
Note that assignment does not actually return any value. You cannot do it
a = b = (c = 2)
source
share