oliverotis
-
Computers and Technology
PyCharm or VS Code, which is quicker?
It has been argued that Python is one of the easiest programming languages to pick up on the planet. It’s no wonder then that Python is the language of choice for novice programmers like myself. Python is easy to learn, has a simple syntax, and has a strong community that has contributed many helpful modules and frameworks. However, newcomers frequently…
Read More » -
Computers and Technology
Just what do you mean by the term “namespace”?
Here, we will discuss Python’s namespaces, namespace types, and namespace scopes. Python is object-based. What we call anything is called by its name. And that “space” is just the object’s main memory address. A namespace is the set of all possible names for a given address in the main memory. Python’s namespaces are built-in, global, and local (the default for…
Read More »