Epython Lab
6.4K subscribers
665 photos
31 videos
104 files
1.23K links
Welcome to Epython Lab, where you can get resources to learn, one-on-one trainings on machine learning, business analytics, and Python, and solutions for business problems.

Buy ads: https://telega.io/c/epythonlab
Download Telegram
Epython Lab
#Names #Variable #Python Q: Explain the difference between name and variable in Python? Send your answer to @pythonethbot
#Keynote #Variables #Names
variables are objects stored in memory.
Names are labels that we assign to them. Names are how we refers to variables through code.
Ex: a = 5
a is the name that points to a variable in a memory. There can be possible that multiple names points to the same variable.
Variables keep track of the information we need to successfully execute a program. Variables can be used to store a variety of types of information in computer memory.