猫史档案馆


【Python作品分享】小海报修改【教程贴】

用户:我的名字哪去了我的名字哪去了查看:0 回复:0 评论:0 创建时间:2020-07-30T14:11:17


【作品展示】

center_image

 

【作品介绍】

对于课上的海报进行了微调及修改

 

【作品源代码】

import turtle
t = turtle.Pen()

t.hideturtle()

turtle.bgcolor('#000000')
t.color('#800080')
t.pensize(3)

stytle=[('黑体',65,'bold'),('黑体',20,'bold'),('黑体',30,'bold'),('黑体',15,'bold')]

t.goto(0,100)
t.goto(-100,100)
t.write('Program',font=stytle[1])
t.goto(-100,0)
t.write('编',font=stytle[0])
t.goto(100,0)
t.goto(100,-100)
t.goto(0,-100)
t.write('程',font=stytle[0])
t.goto(0,0)

t.up()
t.goto(-100,-100)
t.write('培养',font=stytle[2])
t.goto(-100,-50)
t.write('计算思维',font=stytle[3])
t.goto(5,75)
t.write("不止是学习语言",font=stytle[3])
t.goto(5,30)
t.write('而是',font=stytle[1])

turtle.done()

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页