1 2 3 4 5 6
for row in range(10): for column in range(10): print("*", end=" ") # Print a blank line for next row print()