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.
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.