Assign Multiple Values to Variable in Python
Assign Multiple Values to Variables in Python in one line:
x, y, z = "Orange", "Kiwi", "Apple"
One thing to care about when assigning multiple variables in one line is to match the number of variables and the values or you’ll get an error.
Get values from List to variables in Python:
same here, the number of variables must match the values in the list.
Numbers = ["one", "two", "Three"]
x, y, z = Numbers
print(x)
print(y)
print(z)