Intermediate Python Lesson 2: Variables and Namespaces
yt link
Variables
A variable is a named reference to an object. You've used variables before – anytime you write something like x = 5, you create a variable with the name 'x' referencing the int object 5. Variables are dynamically-typed – declared wi...
philipdevblog.hashnode.dev7 min read