'F' → Fullscreen
Create a new Python program named 1-17-nested-loops.
for row in range(1, 4): for col in range(1, 4): print(f"(Row {row}, Col {col})", end=" ") print()for row in range(1, 4): for col in range(1, 4): print(f"(Row {row}, Col {col})", end=" ") print()
print()size = int(input("Enter the size of the table: "))
for num1 in range(1, size + 1): for num2 in range(1, size + 1): product = num1 * num2 print(product, end=" ") print()Verify your program works correctly.
(Row 1, Col 1) (Row 1, Col 2) (Row 1, Col 3)(Row 2, Col 1) (Row 2, Col 2) (Row 2, Col 3)(Row 3, Col 1) (Row 3, Col 2) (Row 3, Col 3)
Enter the size of the table: 3 [Enter]1 2 32 4 63 6 9Answer the following questions before submitting your work.
print() run inside the nested loop?num1 represent, and what does num2 represent?print() (with nothing inside it) appear after the inner loop, but not inside it?Submit the required files to the appropriate dropbox.