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