因此,这里的事情, IM绘图威斯敏斯特宫在学校我的个人项目, 我已经做好了所有的绘图,但有是使我的生活带来很多困难一个问题, 我想创建线的最短途径窗口,所以我想出了这个:Python的龟起始位置
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)
它画4个窗口在一排就像我想,但问题是,它总是从起点位置(0,0)和 我想得到它开始绘制(-335,-195),但我不知道如何 如果有人可能会gratefull LD帮我这个
[Python turtle set start position]可能重复(http://stackoverflow.com/questions/14713037/python-turtle-set-start-position) – MooingRawr
[turtle doc](https://docs.python。 org/3.5/library/turtle.html) – furas
下面给出的答案与前一个问题中的第二个答案完全相同。 –