Commit d7d10ba5 by BellCodeEditor

save project

parent 19c2f308
Showing with 12 additions and 4 deletions
#我们都爱夸夸夸
name=input('大明星,你叫什么呀:')
print(name+'你真帅')
\ No newline at end of file
import turtle
a=input("你想要什么颜色的五角星:")
t=turtle.Pen()
t.fillcolor(a)
t.begin_fill()
for i in range(5):
t.forward(200)
t.right(144)
t.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