Commit 331b6a28 by BellCodeEditor

save project

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