## python绘制科赫雪花
脚本如下:import turtledef koch(size,n): if n==1: turtle.fd(size) else: for i in [0,60,-120,60]:
2020-09-26