Python如何编出爱心

  • 来源:网络
  • 更新日期:2020-10-30

摘要:Python编出爱心的方法:首先打开代码编辑器;然后输入画爱心轮廓,并填充红色【pensize(1) pencolor('red')fillcolor('pink') speed(5) up() goto(-30, 100)down

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视频教程