from turtle import * import turtle as t def cc(c): if c <= 3: o = 0 return fd(c) lt(30) cc(c / 2) cc(80) t.mainloop()