您的位置:首页 > 编程语言 > Python开发

Python---turtle模块---日本国旗的绘画

2019-04-09 11:54 603 查看
版权声明:如需请赋本文章链接https://me.csdn.net/guoyihaoguoyihao https://blog.csdn.net/guoyihaoguoyihao/article/details/89141501

(本篇博主自己编写,如有帮助,甚是荣幸!!)

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

Python--日本国旗Python--日本国旗Python--日本国旗Python--日本国旗Python--日本国旗Python--日本国旗Python--日本国旗Python--日本国旗

#Japan(RiBen)

import turtle

import math

def draw_circle(aTurtle):

aTurtle.begin_fill()

aTurtle.fillcolor('red')

aTurtle.penup()

aTurtle.goto(5,-100)

aTurtle.pendown()

aTurtle.begin_fill()

aTurtle.fillcolor('red')

aTurtle.circle(100,360)

aTurtle.end_fill()

def draw_qi(times=20.0):

width, height = 30*times, 20*times

window = turtle.Screen()

aTurtle = turtle.Turtle()

aTurtle.hideturtle()

aTurtle.speed(10)

aTurtle.penup()

aTurtle.goto(-width/2, height/2)

aTurtle.pendown()

aTurtle.begin_fill()

aTurtle.fillcolor('white')

aTurtle.fd(width)

aTurtle.right(90)

aTurtle.fd(height)

aTurtle.right(90)

aTurtle.fd(width)

aTurtle.right(90)

aTurtle.fd(height)

aTurtle.right(90)

aTurtle.end_fill()

draw_circle(aTurtle)

window.exitonclick()

if __name__=='__main__':

draw_qi()

(如有更好代码请一定指教!如有不懂,留言有空必答!!)

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: