自动画圆圈代码

作者: 素问0 | 来源:发表于2020-03-19 11:44 被阅读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画炫彩圆圈_腾讯视频

    相关文章

      网友评论

        本文标题:自动画圆圈代码

        本文链接:https://www.haomeiwen.com/subject/ffihyhtx.html