Part 2 of a beginner-friendly series on learning Python from scratch.
In Part 1, we installed Python, wrote our first program, and learned the syntax rules that hold everything together. Now it's time to start storing and working with information — which means variables and data types.
What is a Variable?
A variable is a name that points to a value stored in memory. Think of it as a labeled container you can put something into, and refer back to later by name.
name = "Ramesh"






