Commit 9cf5fbda by BellCodeEditor

save project

parent c999d1ce
Showing with 3 additions and 12 deletions
name=input("敢于挑战的创造师")
print(name+"你好呀")
\ No newline at end of file
#请使用turtle模块画出五角星
import turtle
pen=turtle.pen()
pen.fillcolor("blue")
pen.begin_fill()
for i in range(36):
pen.forward(200)
pen.right(170)
pen.hideturtle()
pen.end_fill()
pen.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