Python also supports chained assignments. So, if you want to assign the same value to multiple variables, you can do it in a straightforward way
Chained assignments <--- assign the same value to multiple variables:
>>> x = 2
>>> y = 2
>>> z = 2
More elegant way:
>>> x, y, z = 2, 2, 2
Chained assignments:
>>> x = y = z = 2
>>> x, y, z
(2, 2, 2)