Question: for i in range(10): for j in range(i): print(i * j) how many times the print statement will be executed now I know the answer
for i in range(10):
for j in range(i):
print(i * j)
how many times the print statement will be executed now I know the answer is 45 but how to calculate it?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
