引入turtle库画图简直无敌,之前用过MATLAB的plot函数,感觉这个更强大,有海量的第三方库,简直完美有趣
1.彩色螺旋线的绘制
import turtle
import time
turtle.pensize(2)
turtle.bgcolor("black")
colors = ["red", "yellow",'purple','blue']
turtle.tracer(False)
for x in range(400):
turtle.forward(2*x)
turtle.color(colors[x % 4])
turtle.left(91)
turtle.tracer(True)
2.太阳花的绘制
from turtle import *
color('red', 'yellow')
begin_fill()
whil

使用Python的turtle库可以轻松创建丰富的图形,包括彩色螺旋线、五角星和螺旋线,比MATLAB的plot函数更具趣味性和灵活性,且拥有众多第三方库支持。
最低0.47元/天 解锁文章
4123

被折叠的 条评论
为什么被折叠?



