• 大小: 0.92KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: python  

资源简介

用python画出五星红旗

资源截图

代码片段和文件信息

from math import tan
from turtle import *
w = 288
h = 192
a = 192 / 10
setup(w * 2h * 2)
bgcolor(“red“)
def star(a angle):
    begin_fill()
    pu()
    fillcolor(“yellow“)
    for i in range(5):
        fd(a)
        rt(angle)
    end_fill()
    pd()

def move(x y):
    pu()
    goto(x y)
    pd()

speed(8)
# 移动到大五角星点位并绘制
move(-12.9 * a 5.9 * a)
star(a * 3 * 2 * 

评论

共有 条评论