当前位置:   article > 正文

用python画风车具体代码,用python画简单的风车_python画风车的代码

python画风车的代码

大家好,小编来为大家解答以下问题,用python六色风车代码怎么写作业,用python六色风车代码怎么写,现在让我们一起来看看吧!

 

python中有一个画图的库非常有名,就是:

turtle

turtle库是Python语言中一个很流行的绘制图像的函数库,想象一个小乌龟,在一个横轴为x、纵轴为y的坐标系原点,(0,0)位置开始,它根据一组函数指令的控制,在这个平面坐标系中移动,从而在它爬行的路径上绘制了图形。

安装库

pip install turtle

实战

使用python画个大风车,就使用这个库实现;

主要代码如下:

  1. import turtle
  2. #画一个扇叶
  3. def draw_sector(col1,col2):
  4. turtle.color(col1,col1)
  5. turtle.circle(30,90)
  6. turtle.right(90)
  7. turtle.begin_fill()
  8. turtle.fd(120)
  9. turtle.right(90)
  10. turtle.fd(150)
  11. turtle.right(135)
  12. turtle.fd(150*(1.414)-30)
  13. turtle.end_fill()
  14. turtle.color(col2,col2)
  15. turtle.begin_fill()
  16. turtle.right(90)
  17. turtle.circle(30,90)
  18. turtle.right(90)
  19. turtle.fd(75*1.414-30)
  20. turtle.right(90)
  21. turtle.fd(150/1.414)
  22. turtle.right(135)
  23. turtle.fd(120)
  24. turtle.end_fill()
  25. turtle.ri
文章知识点与官方知识档案匹配,可进一步学习相关知识
Python入门技能树首页概览435093 人正在系统学习中
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号