If you are on a system where you don't want to or cannot install a Python interpreter, but you'd like to practice your Python skills, or just want to quickly test an idea, online Python interpreters are a great choice for you.VIEW POST
Decorators are one of Python's coolest constructs, they are rather simple, yet quite powerful and flexible. They can greatly improve the structure of your code. In my projects, I always shoot for the highest test coverage possible, so naturally, if I have some custom decorators implemented, I always make sure to have some test coverage for them as well. In this article, I show you some of the best practices to test your decorators.VIEW POST
Python is a general-purpose programming language that has seen great success in a lot of different areas, but can it be used on the frontend instead of JS?VIEW POST
In this article I aim to explain the basics of memory handling in Python, and to answer some practical questions like: Is it possible to have a segfault in Python? Can you introduce memory leaks? Does Python have a garbage collector? How does Pythons GC work?VIEW POST
Python has been having two competing versions co-existing for almost twelve years. Now, that version 2 has officially reached its end of life, but shows no sign of dying out, it's time to ask: will Python 2 ever die or is it here to stay forever? Let's find out.VIEW POST