So here is the thing, im drawing Westminster Palace for my personal project at school, I have already done all the drawing but there is one problem that is making my life a lot harder, I want to create a line of windows in the shortest way so I came up with this:
from turtle import*
for row in range(1):
for col in range(1,8,2):
penup()
setpos(col*50, row*50)
pendown()
for i in range(4):
fd(50)
lt(90)
it does draw 4 windows in a row just like I would like to, but the problem is that it always starts in the starting position(0,0) and I would like to get it to start drawing at (-335,-195) but I just cant figure out how I would be gratefull if someone would help me with this