Discover Python and Patterns (5): Integers – Design Patterns and Video Games

In previous posts, I only used strings and booleans. In this one, I use a new data type called “int” (for integer) that allows the storage and computation of natural numbers (numbers without a decimal part). I use them to … Continue reading →… Read more

Similar

Build Python Go-extensions

Go(golang) is a very fast and efficient compiled programming language. Much like how you can build Python C-extensions to speed up your python applications, Python developers also have the option to build Go components that are embedded into their python. (more…)

Read more »