value assign in python

How to assign value or string in python? 

1.  Single value assign 
2. Multiple value assign

1. Single value 

Name = "sangita"
Salary = 25660.80
Age = 25
                            Or 
a = 80
b = 70
c = 60

2. Multiple value assign 

a, b, c = 80,70,60
Print(a,c)
Output : 80,60


Comments

Popular posts from this blog

Python Tokens

Pie Chart , Donut Plot, Area plot