Commit 44e20db3 by BellCodeEditor

save project

parent aa28d93d
Showing with 2 additions and 14 deletions
"""
请使用turtle模块画出五角星
"""
import turtle
pen1=turtle.Pen()
pen1.speed(100)
pen1.fillcolor("red")
pen1.begin_fill()
for i in range(36):
pen1.fd(400)
pen1.rt(170)
pen1.end_fill()
turtle.done()
\ No newline at end of file
name=("你叫")
print(name+"你是最棒的创造师")
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