Unravelling `Not` in Python

For this next blog post in my series of Python’s syntactic sugar, I’m tackling what would seem to be a very simple bit of syntax, but which actually requires diving into multiple layers to fully implement: not. On the surface, the definition of not is ver… Read more

Similar

Zip in Python

zip takes n number of iterables and returns list of tuples. ith element of the tuple is created using the ith element from each of the… (more…)

Read more »