Jay Kakadiya Jay Kakadiya

Assign Value to Multiple Variables


Python allows you to assign values to multiple variables in one line:

Example

x, y, z = "Orange", "Banana", "Cherry"

print(x)

print(y)

print(z)

And you can assign the same value to multiple variables in one line:

Example

x = y = z = "Orange"

print(x)

print(y)

print(z)

Output Variables

The Python print statement is often used to output variables.

To combine both text and a variable, Python uses the + character:

Example

x = "awesome"

print("Python is " + x)

You can also use the + character to add a variable to another variable:

Example

x = "Python is "

y = "awesome"

z = x + y

print(z)

For numbers, the + character works as a mathematical operator:

Example

x = 5

y = 10

print(x + y)

If you try to combine a string and a number, Python will give you an error:

Example

x = 5

y = "John"

print(x + y)

Jay Kakadiya

Jay Kakadiya Creator

I am a computer field, & i am Web developer.

Suggested Creators

Jay Kakadiya