Commit f5ec5079 by BellCodeEditor

save project

parent 020c1999
Showing with 16 additions and 10 deletions
"""
请使用turtle模块画出五角星
"""
pen=turtle.Pen()
for i in range(50)
pen.forward(1000)
pen.right(144)
pen.hideturtle()
turtle.done()
def new_input():
total=[]
while True:
unit=input("价格是:(输入q退出)")
if unit=='q':
break
else:
try:
unit=int(unit)
except:
print("请重新输入价格")
else:
total.append(unit)
print(total)
new_input()
\ 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