# # Print a 5 x 5 box # # The end="" in the print statement tells # print not to print a new line. Then # the next print will continue in # the same line. for i in range(0,5): # uncomment next line for debugging # print("i=", i,":",end="") for j in range(0,5): print(" * ", end="") # uncomment next line for debugging # print(" ", j, " ", end="") print("")