Python(十四)——turtle画同心圆

Python(十四)——turtle画同心圆

import turtle
t = turtle.Pen()
my_colors = ("red", "green", "yellow", "black")
t.width = 1 #设置线条的宽度
t.speed(0) #速度
for i in range(10):
    t.penup() #抬起
    t.goto(0,-10*i)
    t.pendown() #落下
    t.color(my_colors[i%len(my_colors)])
    t.circle(10+i*10)

turtle.done() #程序结束后,窗口依然在

Python(十四)——turtle画同心圆_第1张图片

你可能感兴趣的:(python初级)