set multiple variables 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, c = 0.1, 100, 'string'
print(a)
# 0.1
print(b)
# 100
print(c)
# string