云上尘-云上尘-第2页
云上尘的头像-云上尘
UID:1 已加入本站400天 总消费:0 管理员
用Python绘制多个同切圆-云上尘

用Python绘制多个同切圆

import turtle turtle.pensize(2) turtle.circle(10) turtle.circle(40) turtle.circle(80) turtle.circle(160)
1年前
0110
用Python绘制红色五角星-云上尘

用Python绘制红色五角星

from turtle import * color('red','red') begin_fill() for i in range(5): fd(200) rt(144) end_fill()
1年前
0110