Python---turtle模块---zhai po ni zi国旗的绘画

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

#-*-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()    

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

发布了29 篇原创文章 · 获赞 5 · 访问量 4592

猜你喜欢

转载自blog.csdn.net/guoyihaoguoyihao/article/details/89141501