Commit 9b4ae43d by BellCodeEditor

save project

parent e23abb70
Showing with 11 additions and 13 deletions
name=input("勇敢的创造师你叫啥?")
print(name+",你好呀")
\ No newline at end of file
""" import turtle
请使用turtle模块画出五角星 pen=turtle.Pen()
""" pen.fillcolor("red")
import turtle pen.begin_fill()
pen = turtle.Pen() for i in range(36):
pen.fillcolor("red") pen.forward(200)
pen.begin_fill() pen.left(170)turtle.done()
for i in range(5): \ No newline at end of file
pen.forward(200)
pen.right(144)
pen.end_fill()
pen.hideturtle()
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