当前位置:   article > 正文

python四瓣花图形_详解python使用turtle库来画一朵花

python绘制四瓣花图形

看了群主最后成像的图片,应该是循环了36次画方框,每次有10度的偏移。

当然不能提前看答案,自己试着写代码。

之前有用过海龟画图来画过五角星、奥运五环、围棋盘等,所以感觉不难。

# !/usr/bin/env python

# -*- coding:utf-8 -*-

# Author:wxh

def run():

'''

主方法

:return: None

'''

import turtle

length = 150 # 线段长度

angle = 45 # 角度

offset_angle = 10 # 每次偏移的角度

turtle.screensize(800, 800)

turtle.bgcolor('blue')

def draw():

'循环画方框'

turtle.forward(length)

turtle.right(angle)

turtle.forward(length)

turtle.right(180 - angle)

turtle.forward(length)

turtle.right(angle)

turtle.forward(length)

turtle.right(180 - angle)

turtle.right(offset_angle)

turtle.penup()

turtle.goto(0, -400)

turtle.left(90)

turtle.pendown()

turtle.pencolor('gold')

turtle.

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

闽ICP备14008679号