Will the following code create 100000 threads?
async def f(i): await .... # ... l = range(100000) [x for x in [(i, await f(i)) for i in l]]