import turtle def main(): turtle.pensize(4) for x in range(5): for y in range(5): turtle.penup() turtle.goto(x*50,y*50)