Commit 22023b63 by BellCodeEditor

save project

parent c1d6b6b8
Showing with 10 additions and 5 deletions
name=input("你叫什么名字")
print(name+"你是最棒的创造师")
import turtle
pen=turtle.Pen()
ys=input("你想让五角星变成什么颜色")
pen.fillcolor(ys)
pen.begin_fill()
for i in range(5):
pen.forward(150)
pen.right(144)
pen.end_fill()
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