当前位置:   article > 正文

Python中turtle画n层m个不同方向的圆,送你一朵小黄花_python turtle 改变画圆的方向

python turtle 改变画圆的方向

没啥可说的,直接上代码

import turtle  # 绘图库

def describing_circle(r, n, m):
    # 页面的大小
    turtle.setup(width=1000, height=700)
    # 颜色
    turtle.color('blue', 'orange')  # 同时给笔和内部区域设置颜色
    # 笔粗细
    turtle.pensize(2)
    # 设置速度并且取消延迟
    turtle.Turtle().screen.delay(2)
    turtle.speed(9)
    # 隐藏画笔
    turtle.hideturtle()
    # 抬起画笔
    turtle.penup()
    # 将画笔移动到0,-10的坐标点去
    turtle.goto(0, -10)
    # 放下画笔 开始画
    turtle.pendown()
    # 需要进行填充
    turtle.begin_fill()
    # 设置循环层数n
    def xunhuan():
        for i in range(n):
            turtle.circle((i+1)*r/n)
    for j in range(m):
        xunhuan()
        turtle.right(360/m)
    # 结束填充
    turtle.end_fill()

if __name__ == '__main__':
    describing_circle(120, 6, 6)  # 画圆的函数传入圆的半径、循环层数及旋转角度次数
    # 点击窗口关闭
    window = turtle.Screen()
    window.exitonclick()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37

结果如下:
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/117084
推荐阅读
相关标签
  

闽ICP备14008679号