python 画图

作者: 起源矢量 | 来源:发表于2021-11-12 11:59 被阅读0次

    利用turtle 很简单的画一张图

    import turtle
    t=turtle.Pen()
    for x in range(300):
        t.forward(x)
        t.left(59)
    
    image.png

    相关文章

      网友评论

        本文标题:python 画图

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