Ok so basically I want to define 4 separate variable by all the same value simultaneously.
Is it possible to do something along the lines of this?
a, b, c, d = 4
where all four variables separately equal 4?
Ok so basically I want to define 4 separate variable by all the same value simultaneously.
Is it possible to do something along the lines of this?
a, b, c, d = 4
where all four variables separately equal 4?
Use this syntax:
a = b = c = d = 4
DEMO:
>>> a = b = c = d = 4
>>> a
4
>>> b
4
>>> c
4
>>> d
4