EN
Python - assign one value to multiple variables at once
0
points
In this article, we would like to show you how to assign one value to multiple variables at once in Python.
Quick solution:
a = b = c = 10
print(a)
print(b)
print(c)
Output:
10
10
10