python-模塊-turtle-分形樹

題目要求 import turtle; def draw_shu(lengh): if lengh>=5: turtle.forward(lengh) turtle.right(20)#向右旋轉20度 draw_shu(lengh-10) turtle.left(40)#向左旋轉40度 draw_shu(lengh-10) turtle.right(20) turtl
相關文章
相關標籤/搜索