Commit 3ab3bb39 by BellCodeEditor

auto save

parent 1e102d99
Showing with 23 additions and 0 deletions
import turtle
import random
pen = turtle.Pen()
pen1 = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("pink")
pen.left(36)
pen.fillcolor('black')
pen.begin_fill()
for i in range(5):
pen.forward(200)
pen.left(144)
pen.end_fill()
pen1.penup()
pen1.setheading(180)
pen1.forward(150)
pen1.pendown()
pen1.write("刘浩! ",font = ('Times',30,'normal'))
pen.hideturtle()
pen1.hideturtle()
turtle.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