Parallel map is built in to Python already with pools.
import requests
import multiprocessing as mp
pool = mp.Pool()
urls = ["http://httpbin.org/get?a=#{}".format(i) for i in range(100)]
pool.map(requests.get, urls)
Right, and neither of those are pythonic. There is no need for a lambda when you have comprehensions.
This comment may relate better to your point: I would personally prefer "afor" over "async for", FWIW. One thing I don't feel "async for" is being more explicit over being more verbose. The symmetry with "await foo" is broken though.
e.g.: Replace:
To: From 17.55s to 0.72s.