美文网首页
Python 画图

Python 画图

作者: Rinaloving | 来源:发表于2023-12-20 21:54 被阅读0次

    效果

    代码

    import turtle
    #clcoding.com
    t = turtle.Turtle()
    s = turtle.Screen()
    s.bgcolor("black")
    t.width(2)
    t.speed(15)
    col = ('white','pink', 'cyan')
    for i in range (300):
        t.pencolor(col[i%3])
        t.forward(i*4)
        t.right(121)
    

    相关文章

      网友评论

          本文标题:Python 画图

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