Commit 0fdc3936 by BellCodeEditor

save project

parent 9b849788
Showing with 2 additions and 14 deletions
# 上节课你是这样绘制的五角星👇: t=input("出什么?")
# 这节课你可以利用新学的知识自定义五角星的颜色么? print("玩家出:"+t)
import turtle
p=turtle.Pen()
t=input("你要什么颜色?")
p.fillcolor(t)
p.begin_fill()
p.pendown()
for i in range(5):
p.forward(100)
p.right(144)
p.end_fill()
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