This should be a very simple question, however, it is proving difficult for me. I'm rather new to turtle graphics, and so, I am trying to get a simple drawing done. My turtle will draw a row, pick the pen up, move up one pixel, place the pen down, and keep drawing. Here's my code so far:
for y in range(height):
turtle.pendown()
for x in range(width):
detLand(y, x) # Set the color, works just fine
turtle.setx(x)
turtle.sety(y)
turtle.penup()
I figured this would be easy, however, it's still drawing over top of my lines.