Assume a, b, c are positive integers. In the following comprehension, how many times will the function randint will be called ?
[[[ randint(1,100) for i in range(a)] for j in range(b)]for k in range (c)]
The output is always abc times and not a+b+c.
I want to understand in what order the function call is happening, can you explain the execution order.