﻿import turtle
t = turtle.Turtle()
# 画牌子
t.pensize(15)
t.color('red')
t.fillcolor('yellow')
t.begin_fill()
t.circle(100)
t.end_fill()
# 写字
t.penup()
t.goto(-60,40)
t.pendown()
t.color('black')
t.write('学',font = ('黑体',75,'bold'))
# 杆子
t.penup()
t.goto(0,0)
t.pendown()
t.right(90)
t.color('grey')
t.forward(300)

turtle.done()




