码迷,mamicode.com
首页 > 编程语言 > 详细

Python绘制五星红旗

时间:2018-03-19 10:57:08      阅读:608      评论:0      收藏:0      [点我收藏+]

标签:imp   turtle   分享   col   span   nbsp   import   .com   ide   

# -*- coding: UTF-8 -*-
from turtle import *

def mygoto(x,y):
    up()
    goto(x,y)
    down()

def draw(z):
    begin_fill()
    for i in range(5):
        forward(z)
        right(144)
    end_fill()

setup(700, 500, 0, 0)
color("yellow")
bgcolor("red")
fillcolor("yellow")
hideturtle()

mygoto(-300,150)
draw(100)

for i in range(4):
    x=1;
    if i in [0,3]:
        x=0;
    mygoto(-210+x*50,205-i*50)
    left(0-i*10)
    draw(30)
mygoto(0,0)
hideturtle()

done()

运行结果:
技术分享图片

 

Python绘制五星红旗

标签:imp   turtle   分享   col   span   nbsp   import   .com   ide   

原文地址:https://www.cnblogs.com/god1924668503/p/8600387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!