自动画圆圈代码
2020-03-19 本文已影响0人
素问0
在python3的idle中键入以下代码并运行
import turtle
t = turtle.Pen() #注意这里的P是大写
t.speed(0)
t.width(5)
my_colors = ("black","green","yellow","red","blue")
for i in range(20):
t.penup()
t.goto(0,-i*10)
t.pendown()
t.color(my_colors[i%len(my_colors)])
t.circle(10+i*10)
turtle.done()
得到的效果
python画炫彩圆圈_腾讯视频