机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
侯斯瀚
更新时间:
2024-04-14 20:20
浏览:
462次
点赞:
1次
热度:
20
import turtle as t t.penup() t.goto(-200,0) t.pendown() t.pencolor("red") t.fillcolor("red") t.begin_fill() t.fd(300) t.left(90) t.fd(200) t.left(90) t.fd(300) t.left(90) t.fd(200) t.left(90) t.end_fill() t.pencolor("yellow") t.penup() t.goto(-160,160) t.pendown() t.end_fill() t.fillcolor("yellow") t.begin_fill() for x in range(5): t.fd(50) t.right(180-36) t.end_fill() t.fillcolor("yellow") t.begin_fill() t.penup() t.goto(-100,180) t.pendown() for x in range(5): t.fd(25) t.right(180-36) t.end_fill() t.fillcolor("yellow") t.begin_fill() t.penup() t.goto(-80,150) t.pendown() for x in range(5): t.fd(25) t.right(180-36) t.end_fill() t.fillcolor("yellow") t.begin_fill() t.penup() t.goto(-90,110) t.pendown() for x in range(5): t.fd(25) t.right(180-36) t.end_fill() t.fillcolor("yellow") t.begin_fill() t.penup() t.goto(-150,100) t.pendown() for x in range(5): t.fd(25) t.right(180-36) t.end_fill() t.penup() t.goto(-150,-180) t.pendown() t.pencolor("red") t.write("我爱你,中国",font=("宋体",40))
点赞成功
分享作品
×