defining multiple variables in python code example
Example 1: how to assign a value to multiple variables in python
r = kindle = H = 24
#The Three Variables Are All Equal To 24
Example 2: multiple variable declaration in python
a = b = 100
print(a)
# 100
print(b)
# 100