Commit 5474da6b by BellCodeEditor

save project

parent 05239ca3
Showing with 2 additions and 10 deletions
"""
请使用turtle模块画出五角星
"""
import turtle
pen=turtle.Pen()
pen.fillcolor("red")
pen.begin_fill()
for i in range(36):
pen.forward(200)
pen.left(-170)
pen.end_fill()
pen.write("你好\n你的电脑被我勒索了\n请支付赎金",font=("Times",20,"normal"))
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