"""
author:少校
create Time:2025/2/28 15:53
越努力越幸运
"""
import turtle
turtle.setup(800, 600)
# 1. 图形填充
# 1)设置填充颜色
turtle.fillcolor('yellow')
# 2)开始填充
turtle.begin_fill()
# 3)画边框
turtle.forward(200)
turtle.left(45)
turtle.forward(100)
turtle.goto(0, 0)
# 4)结束填充
turtle.end_fill()
print('------------------------------------华--丽--的--分--割--线------------------------------------')
turtle.fillcolor('red')
turtle.width(3)
turtle.up()
turtle.goto(-300, 100)
turtle.setheading(0)
turtle.down()
turtle.begin_fill()
turtle.forward(150)
turtle.left(90)
turtle.forward(150)
turtle.left(90)
turtle.forward(150)
turtle.left(90)
turtle.forward(150)
turtle.end_fill()
turtle.up()
turtle.goto(0, -100)
turtle.down()
turtle.begin_fill()
turtle.circle(80, 180)
turtle.goto(0, -100)
turtle.end_fill()
# 2. 文字
turtle.up()
turtle.goto(10, 200)
turtle.down()
turtle.write('hello world!', font=('宋体', 30, 'normal'))
turtle.mainloop()13.turtle填充和文字
本节1024字2025-03-03 17:23:59