if this is a short post, check back some other time.
Python 3
These are more elaborations on, and examples of, Idiomatic Python. They are meant to be self contained. I'll update this post with certain frequency.enumerate
list comprehensions
with an if statement..map
useful for doing something with each member of an iterable, like converting every member into a float. To use the result ofmap(a, b)
as a list you must do list(map(a,b)
.