我发现自己在 Python 中使用 turtle 模块,只是将一些东西调整为其他人 (Dmitri Kurilo) 编写的代码。我用它做了一个非常整洁的图形,形成了美丽的曲线。因为我对数学知之甚少,也许你们中的一些人可以帮助我破译这里发生的事情!非常感谢,代码如下!:
import turtle, random
from math import *
def fib(n):
for n in range(400):
turtle.color("black")
turtle.right(pi*19)
turtle.forward(n)
if n > 400:
break
turtle.title("The Looping ball")
turtle.colormode(255)
turtle.color("white")
turtle.goto(0,0)
turtle.color("black")
turtle.speed(500)
fib(1)
turtle.getscreen()._root.mainloop()