Book review: Python for Geeks
Python is simple to learn. In fact, it is one of the easiest programming languages to learn - so much so that schools are using it. However, many of us reach a level of python usage and stop there. Yes, I’m looking at you: thrilled at using a list comprehension, map and zip together and thought yourself a Pythonista? Yet, we know that we haven’t written a lot of production code that is used by many users. How to bridge said gap? How do the experts do it? This book claims to shows how. So, if yo
Type Hinting: Generics & Inheritance
Today we are going to discuss an important concept in typing called Generics. This is a topic that is very basic and complex at the same time. You will see it everywhere if you ever worked in a modern static typed language, yet it few developers really understand it.