Use many values to multiple variables in python

 In the post you can see how to use many values to multiple variables in python program.

It's simple way for write to many value to multiples variables using python code.

Here are given a program for that .

a,b,c = "apple","bat","cat"
print(a)
print(b)
print(c)

Many values use in python


Comments