News

Libraries are collections of shared code. They're common in Python, where they're also called "modules," but they're also ...
This post shows you how to check Python version in three ways: by checking the software name, through the terminal, or in the code.
This post explains what a Python module is and how to use it to drastically extend the capabiltiies of your code. Plus: how to make your own!
How does Python deal with memory management? Learn the ins and outs of Python's garbage collection system and how to avoid its pitfalls.
As you can see, this program imports the sys module, which provides access to the Python environment, as well as its variables and settings. I do this so that I can grab sys.version and ensure that ...
I'm a successful systems administrator, been doing it for about 15 years, and I have some spare time on my hands, so I thought I would try my hand at learning some Python. I've done basic ...