Get reliable answers to your questions at Westonci.ca, where our knowledgeable community is always ready to help. Discover detailed solutions to your questions from a wide network of experts on our comprehensive Q&A platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

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)