发布网友 发布时间:2022-04-22 04:26
共2个回答
懂视网 时间:2022-04-28 04:41
Python编出爱心的方法:首先打开代码编辑器;然后输入画爱心轮廓,并填充红色【pensize(1) pencolor('red')fillcolor('pink') speed(5) up() goto(-30, 100)down()】。
Python编出爱心的方法:
from turtle import * pensize(1) pencolor('red') fillcolor('pink') speed(5) up() goto(-30, 100) down() begin_fill() left(90) circle(120,180) circle(360,70) left(38) circle(360,70) circle(120,180) end_fill() up() goto(-100,-100) down()
相关免费学习推荐:python视频教程
热心网友 时间:2022-04-28 01:49
1 from turtle import * 2 def curvemove(): #这个函数是为了绘制爱心上方的曲线 3 for i in range(200): 4 right(1) 5 fd(1) 6 7 pensize(2) #调整画笔粗细 8 speed(10) #调节画笔速度 9 color(‘red‘,‘red‘) #画笔颜色及填充颜色10 begin_fill() #开始填充11 left(140)12 fd(111.65)13 curvemove() #调用函数14 left(120)15 curvemove() #调用函数16 fd(111.65)17 end_fill() #结束填充18 hideturtle() #隐藏画笔19 done()