Assign multiple values to a variable

We can assign multiple values in python.

x, y, z = "A", "B", "C"
print(x)
print(y)
print(z)

Output

A
B
C