Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Get quick and reliable solutions to your questions from a community of seasoned experts on our user-friendly platform. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform.

Which option would complete the statement?

for row in range(0,3):
line = "";
for col in range(0,5):
line += "*";
print(line);

A. outer loop
B. inner loop
C. while loop
D. Reverse loop (not real im pretty sure)