from turtle import*
while True:
forward(100)
right(-60)
forward(100)
right(120)
if abs(pos())<1:
break
turtle.done()
微信扫一扫
from turtle import*
while True:
forward(100)
right(-60)
forward(100)
right(120)
if abs(pos())<1:
break
turtle.done()
相关推荐