• 技术文章 >Python技术 >Python基础教程

    python如何画奥运五环

    爱喝马黛茶的安东尼爱喝马黛茶的安东尼2019-09-17 17:24:10原创18904

    绘制奥运五环主要涉及到Python中的turtle绘图库运用:

    相关推荐:《Python教程

    程序源代码为:

    import turtle
    turtle.width(10)
    turtle.color('black')
    turtle.circle(50)
    turtle.penup()
    turtle.goto(120,0)
    turtle.pendown()
    turtle.color('red')
    turtle.circle(50)
    turtle.penup()
    turtle.goto(240,0)
    turtle.pendown()
    turtle.color('blue')
    turtle.circle(50)
    turtle.penup()
    turtle.goto(60,-50)
    turtle.pendown()
    turtle.color('yellow')
    turtle.circle(50)
    turtle.penup()
    turtle.goto(180,-50)
    turtle.pendown()
    turtle.color('pink')
    turtle.circle(50)
    #Python绘制奥运五环

    运行后,结果为:

    专题推荐:python 奥运五环
    上一篇:python distribute是什么 下一篇:python怎么处理txt

    相关文章推荐

    • python如何读取数据• python如何查看模块源码• python如何逐行读取数据

    全部评论我要评论

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

  • 取消发布评论
  • 

    Python学习网