python assign one value to two variables 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: how to add 2 variables in python
var1 = 5
var2 = 5
result = var1 + var2