猫史档案馆


【Python作品分享】太阳花-1

用户:实在不知道取什么名字了实在不知道取什么名字了查看:0 回复:0 评论:0 创建时间:2019-12-18T22:09:08


【作品展示】

center_image

 

【作品介绍】

估计要

 

【作品源代码】

import turtle
myPen = turtle.Pen()
myPen.speed(0)
myPen.pensize(3)
myPen.pencolor("blue") 
myPen.fillcolor("yellow")

a = "太阳花"
d = "陈炳旭"

s = [a,d]

myPen.begin_fill()
for i in range(20):
    for j in range(4):
        myPen.forward(100)
        myPen.right(90)

    myPen.left(18)
myPen.end_fill()

myPen.pencolor("indigo") 
myPen.penup()
myPen.goto(-60,150)
myPen.pendown()
myPen.write(s[0],font=("Arial",30))

myPen.penup()
myPen.goto(100,-150)
myPen.pendown()
myPen.write(s[1],font=("Arial",15))

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页