Hi all.
I have an up and coming midterm, and this is one of the practice problems. All's I need to do is draw a Tic-Tac-Toe board in TURTLE. However, it has to be in a loop, or something, and I am having a difficult time putting it into one. Here is my code:
from turtle import *
up()
goto(50,50)
right(90)
down()
forward(100)
up()
goto(-50,50)
down()
forward(100)
up()
goto(-100,25)
left(90)
down()
forward(200)
up()
goto(-100,-25)
down()
forward(200)