猫史档案馆


【Python作品分享】奥运五环【求助帖】

用户:幸福快乐KelL幸福快乐KelL查看:0 回复:2 评论:0 创建时间:2023-09-10T15:33:04


【作品展示】

center_image

 

【作品介绍】

家人们,有谁知道这个画笔能加粗吗?那个黄色能深一点吗?总感觉有问题

 

【作品源代码】

import turtle
turtle.pencolor("blue")
turtle.circle(100)
turtle.up()
turtle.forward(150)
turtle.down()
turtle.pencolor("black")
turtle.circle(100)
turtle.up()
turtle.forward(150)
turtle.down()
turtle.pencolor("red")
turtle.circle(100)
turtle.up()
turtle.left(90)
turtle.forward(80)
turtle.right(270)
turtle.forward(80)
turtle.down()
turtle.pencolor("green")
turtle.circle(100)
turtle.up()
turtle.forward(150)
turtle.down()
turtle.pencolor("yellow")
turtle.circle(100)
turtle.done()

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 1下一页
Lintu233Qw_OfficalLintu233Qw_Offical

画笔是可以加粗的:

import turtle
turtle.pensize(5)#5为粗细数值

此外,笔的颜色是可以自定义的,你可以输入HEX颜色代码:

turtle.pencolor('#AABBCC')###'#AABBCC'为颜色代码###

你可以在网上搜搜

点赞1


评论


程序的来源程序的来源

黄色本来就是这样的,要是看不习惯可以调深点

点赞1


评论