What exactly does the following statement mean in Python?
randrange(10**10) for i in range(100)
I'm aware that randrange is a random number generator but cant really make out the effect of the statement.
|
What exactly does the following statement mean in Python?
I'm aware that |
|||||||||
|
|
The way you posted it, it's a
If the code was inside |
|||||||||||||||||||
|
|
On its own, it would be a syntax error. Enclosed in parentheses, it's a generator expression:
returns a generator that will yield the results of 100 calls to Inside square brackets, it's a list comprehension:
returns a list of 100 numbers resulting from a call to The advantage of a generator expression over a list comprehension is that it's evaluated lazily, so you don't have to construct and keep the entire list in memory (which is especially relevant with very large, possibly infinite generators). |
|||
|
|