国旗绘制(python ,3.10)turtle版

from turtle import *

# 画布为默认大小,将起笔移动到国旗的左上角
penup()
goto(-300, 200)
pendown()

# 绘制国旗的红色背景矩形
fillcolor("red")
begin_fill()
for i in range(2):
    speed(250)
    forward(600)
    right(90)
    forward(400)
    right(90)
end_fill()

# 将起笔移动到坐标中心,并将起笔方向设置为x轴正方向
penup()
goto(-265, 110)
seth(0)
pendown()

# 在中央绘制一颗五星
fillcolor('yellow')
begin_fill()
speed(1)
for i in range(5):
    speed(250)
    forward(30)
    left(72)
    forward(30)
    right(144)
end_fill()

x = ["-210", "-160", "-160", "-210"]
y = ["180", "140", "75", "25"]
for h in range(4):
    penup()
    goto(eval(x[h]), eval(y[h]))
    seth(0)
    pendown()
    fillcolor('yellow')
    begin_fill()
    speed(1)
    for i in range(5):
        speed(250)
        forward(10)
        left(72)
        forward(10)
        right(144)
    end_fill()

N = input("停滞")
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值