What is a namespace in python actually?
I just learned python in few days ago. I learned how to declare variables as belows
x = 10
x is a name, and 10 is an object
And it will be stored in a place called namespace.
What is a namespace actually?
I'm stuck on it...