Coder Baba
2.42K subscribers
1.01K photos
23 videos
722 files
723 links
Everything about programming for beginners.
1 and only official telegram channel of CODERBABA India.

Content:
.NET Developer,
Programming (ASP. NET, VB. NET, C#, SQL Server),
& Projects
follow me https://linktr.ee/coderbaba
*Programming
*Coding
*Note
Download Telegram
Python variables:

in python variable is a named location used to store data
in the memory. each variable must have a unique name called
identifier.

In python variables do not need declaration to reserve memory
space . The variable declaration or variable initialization
happens automatically when we assign a value to a variable.


as example:

salary=100
Emp_Name= "Ravi"
Age1, Age2, Age3=20,24,25