Commit 5f738eb1 by BellCodeEditor

auto save

parent 35e54b35
Showing with 23 additions and 0 deletions
# 上节课你是这样绘制的五角星👇:
# 这节课你可以利用新学的知识自定义五角星的颜色么?
"""
import turtle
pen = turtle.Pen()
......@@ -11,3 +12,25 @@ for i in range(5): #重复执行5次
pen.right(144) #向右移动144度,注意这里的参数一定不能变
pen.end_fill() #结束填充红色
turtle.done()
"""
import turtle
a1=turtle.Pen()
a2=turtle.Pen()
b=turtle.Screen()
b.bgcolor("pink")
c=b.textinput("提示","你想要多大的爱心")
len=int(c)
a1.penup()
a1.goto(0,90)
a1.pendown()
a1.left(45)
a1.forward(2*len)
a1.circle(len,180)
a1.right(90)
a1.circle(len,180)
a1.forward(2*len)
a2.penup()
a2.goto(90,0)
a2.pendown()
a2.write("恭贺新禧",font=("times",40,"normal"))
turtle.done()
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