
Lv.1
在 拜师学艺的娃 中回复
@斯莱特林继承人xaoya_Gaunter @Python-happyyyy
要不你俩都用海龟做个东西之后我看谁的好就拜谁为师以前做的也可以
2021-10-10T11:18:54 点赞:0
在 【Python作品分享】随机螺旋线【作品秀】 中回复
import turtle
from itertools import cycle
colors = cycle(['red','orange','yellow', \
'green', 'blue','purple'])
def draw_circle(size, angle, shift ):
turtle.pencolor(next(colors))
turtle.circle(size)
turtle.right(angle)
turtle.forward(shift)
draw_circle(size + 5, angle + 1, shift +
1)
turtle.bgcolor('black')
turtle.speed('fast')
turtle.pensize(4)
draw_circle(30, 0,1)
2021-10-16T17:24:01 点赞:0
在 【Python作品分享】分形樱花树【作品秀】 中回复
imgsrc="https://static.cod喵/emoji/codemao/%E7%BC%96%E7%A8%8B%E7%8C%AB_%E7%82%B9%E8%B5%9E.gif"alt="emotion_编程猫_点赞"
2021-10-16T21:11:50 点赞:0
在 【Python作品分享】分形樱花树【作品秀】 中回复
imgsrc="https://static.codemao.cn/emotion/thunder_monkey/%E9%9B%B7%E7%94%B5%E7%8C%B4z.gif"alt="emotion_雷电猴_嗯嗯"
2021-10-17T10:26:22 点赞:0
在 【海龟编辑器】意见反馈信箱(长期有效) 中回复
还不如去下个Python这是网址Welcome to Python.org
同意的就去下,顺便把我顶上去让官方看见
2021-10-17T10:37:38 点赞:0