Q1Numerical4 Marks26 Oct 2025
Consider the following Python code. How many lines will be printed when this code is executed?
```
for i in range(1, 6):
for j in range(1, 6):
for k in range(1, 2):
if i == j:
print("-")
else:
print("*", end=" ")
print("+")
```
Press Enter to check.