前提・実現したいこと
Pythonのタートルグラフィック機能を使って八角系のコッホ曲線を描きたいのですが、elseのところをどう弄り続けたらいいかがわからなくなってきましたので、ご教授頂ければ幸いです。
Python
1 from turtle import* 2 speed(1) 3 4 def line(length,depth): 5 if depth == 0: 6 forward(length) 7 else: 8 line(length/3,depth-1) 9 left(60) 10 line(length/3,depth-1) 11 right(120) 12 line(length/3,depth-1) 13 left(60) 14 line(length/3,depth-1) 15 left(60) 16 17 length = 300 18 depth = 3 19 line(length,depth) 20 done() 21
回答1件
あなたの回答
tips
プレビュー