card.py
327 Bytes
import turtle
# pen=turtle.Pen()
# pen.write("hi,妈妈,\n母亲节快乐\n,你辛苦了!",font=("Times",30,"normal"))
# pen.hideturtle()
pen1=turtle.Pen()
pen1.pencolor("red")
pen1.pensize(10)
pen1.left(45)
pen1.forward(100)
pen1.circle(50,180)
pen1.right(90)
pen1.circle(50,180)
pen1.forward(100)
turtle.done()