Commit 93392de8 by BellCodeEditor

save project

parent 8a624868
Showing with 17 additions and 3 deletions
neme=input("输入名字") import turtle
print(neme+"你好啊") gg = 100
\ No newline at end of file a=turtle.Pen()
s=turtle.Screen()
s.bgcolor("black")
a.fillcolor("red")
a.pensize(5)
a.pencolor("yellow")
a.begin_fill()
for i in range(5):
a.forward(gg)
a.left(144)
a.end_fill()
a.penup()
a.goto(-100,100)
a.write("你好!",font=("Times",100,"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