Commit 9e0b954c by BellCodeEditor

auto save

parent 71107288
Showing with 9 additions and 22 deletions
import turtle total = []
pen=turtle.Pen() while True:
screen=turtle.Screen() unit= input("请输入:")
pen.speed('fast') if unit== 'q':
pen.hideturtle() break
screen.bgcolor('black') else:
i=0 total.append(unit)
while i<135: print(total)
pen.pencolor('pink') \ No newline at end of file
pen.penup()
pen.goto(0,0)
pen.forward(200)
pen.pendown()
pen.circle(100)
pen.left(2)
i=i+1
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