python画黄金螺旋曲线
时间: 2023-04-09 16:04:23 浏览: 230
可以使用turtle库来画黄金螺旋曲线,以下是示例代码:
import turtle
def golden_spiral(n):
a = 0
b = 1
for i in range(n):
turtle.forward(b)
turtle.left(90)
a, b = b, a + b
turtle.speed(0)
golden_spiral(20)
turtle.done()
阅读全文