Commit 0d018245 by BellCodeEditor

save project

parent 81479a0f
Showing with 14 additions and 1 deletions
"""
name=input("输入创造师名字")# 我们都爱夸夸夸
print(name+"你是最棒的创造师耶")
"""
import turtle
m=input("输入五角星边长")
y=input("输入五角星颜色")
turtle.pencolor("black")
turtle.fillcolor(y)
turtle.begin_fill()
for i in range(5):
turtle.forward(int(m))
turtle.right(144)
turtle.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