用户:
是我迷恋查看:0 回复:1 评论:0 创建时间:2021-10-09T17:21:42
【作品展示】

【作品介绍】
水作品
【作品源代码】
import turtle
def draw():
turtle.up()
turtle.goto(-300, 300)
turtle.down()
turtle.setheading(-90)
turtle.pensize(5)
turtle.fd(600)
def draw_mylove():
turtle.setheading(0)
turtle.up()
turtle.goto(-300, 270)
turtle.down()
turtle.pen(pencolor="red",fillcolor="red")
turtle.begin_fill()
turtle.fd(600)
turtle.right(90)
turtle.fd(300)
turtle.right(90)
turtle.fd(600)
turtle.end_fill()
def draw_stars(x):
turtle.color('yellow')
turtle.fillcolor("yellow")
turtle.back(x)
turtle.begin_fill()
for i in range(4):
turtle.fd(2 * x)
turtle.right(144)
turtle.fd(2 * x)
turtle.end_fill()
def stars():
turtle.up()
turtle.goto(-250, 220)
turtle.down()
draw_stars(30)
turtle.up()
turtle.goto(-200, 260)
turtle.down()
draw_stars(15)
turtle.up()
turtle.goto(-190, 210)
turtle.down()
draw_stars(15)
turtle.up()
turtle.goto(-210, 180)
turtle.down()
draw_stars(15)
turtle.up()
turtle.goto(-260, 170)
turtle.down()
draw_stars(15)
draw()
draw_mylove()
stars()
turtle.done()
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn