Map and Filter functions
There's the last guy called reduce but it's not here because it's like the odd guy out and requires a dedicated article to it
Let us map
Before we map, let us take a look at a beautiful for-loop in Python.
squares = []
for i in range (2, 10):
sq...
blog.lordsarcastic.dev3 min read