Commit 9c98a35b by BellCodeEditor

auto save

parent a50ceeec
Showing with 17 additions and 0 deletions
import turtle
# 那画笔
pen = turtle.Pen
# 设置画笔颜色
pen.color("red")
# 设置画笔粗细
pen.pensize(10)
#画爱心
pen.left(45)
# fd = forword
pen.fd(100)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.hideturtle()
turtle.done
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment