会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小C+
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
2020年10月6日
叠加三角形
摘要: import turtle turtle.color ("red","yellow") turtle.begin_fill () while True: turtle.forward(100) turtle.right(120) if abs(turtle.pos())<1: break turtl
阅读全文
posted @ 2020-10-06 15:13 小C+
阅读(105)
评论(0)
推荐(0)
2020年9月21日
学习py画小猪佩奇
摘要: # coding:utf-8 import turtle as t t.screensize(400, 300, "blue") t.pensize(4) # 设置画笔的大小 t.colormode(255) # 设置GBK颜色范围为0-255 t.color((255,155,192),"pink
阅读全文
posted @ 2020-09-21 19:26 小C+
阅读(114)
评论(0)
推荐(0)
2020年9月14日
python-五角星
摘要: import turtle turtle.fillcolor("red") turtle.begin_fill() while True: turtle.forward(220) turtle.right(144) if abs(turtle.pos()) < 1: break turtle.fd(
阅读全文
posted @ 2020-09-14 20:08 小C+
阅读(68)
评论(0)
推荐(0)
上一页
1
2
公告