首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
一剑破光阴的代码贴
→
Python 3
一剑破光阴 贴于 2023-06-17 12:47:29
import turtle
t = turtle.Turtle()
t.goto(-100,0)
t.pensize(5) #设置外花边的大小
t.color('red', 'yellow')
t.begin_fill()
for i in range(0, 20):
t.forward(200)
t.left(170)
t.end_fill()
t.done()
阅读全部
| 2023年6月17日 12:47
1
一剑破光阴
全部(1)
Python 3(1)