• 技术文章 >常见问题 >Python常见问题

    python图像怎么绘制

     Ly Ly2020-06-17 10:31:26原创3313

    python蟒蛇绘制图像

    计算机绘图是什么原理?

    一段程序为何能够产生窗体?为何能在窗体上绘制图形?

    python蟒蛇绘制从哪里开始呢?

    如何绘制一条线?弧线?

    代码实现

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    #PythonDraw.py

    import turtle#引入一个绘图库

    turtle.setup(650,350,200,200)

    turtle.penup()

    turtle.fd(-250)

    turtle.pendown()

    turtle.pensize(25)

    turtle.pencolor("purple")

    turtle.seth(-40)

    for i in range(4):

        turtle.circle(40,80)

        turtle.circle(-40,80)

    turtle.circle(40,80/2)

    turtle.fd(40)

    turtle.circle(16,180)

    turtle.fd(40*2/3)

    turtle.done()

    运行结果

    p1.jpg

    如上就完成了Python简单图像的绘制。

    更多Python知识,请关注:Python自学网!!

    专题推荐:python
    上一篇:python随机颜色怎么用 下一篇:python为什么安装到c盘

    相关文章推荐

    • python如何调节音量大小• python是最好的语言吗• python数据分析学什么书• python随机颜色怎么用

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网