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
相关文章
相关标签/搜索