Commit 12cdd4c3 by BellCodeEditor

save project

parent ff47e74f
Showing with 15 additions and 18 deletions
def new_input():
total = []
while True:
unit= input("请输入:")
if unit== 'q':
break
else:
try:
unit= int(unit)
except:
print("cccc")
else:
total.append(unit)
finally:
print("e"*30)
print(total)
return w()
\ No newline at end of file
import turtle
pen=turtle.pen()
pen.pensize(10)
pen.pencolor("black")
pen.goto(0,0)
pen.circle(50)
pen.penup()
pen.pencolor("blue")
pen.goto(100,0)
pen.circle(50)
pen.penup()
turtle.done()
import.turtle
peen
\ 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