Commit 4c832d0a by BellCodeEditor

auto save

parent 71f7e435
Showing with 23 additions and 9 deletions
import turtle as t
t.color("black","blue")
t.penup()
t.goto(-100,100)
t.pendown()
for i in range(4):
t.forward(200)
t.right(90)
t.penup()
t.goto(0,-50)
t.begin_fill()
t.circle(50)
t.end_fill()
t.done()
\ No newline at end of file
print("a"<"b")
\ No newline at end of file
total = [] z=int(input("请输入一个三位数整数"))
while True: a=z//100
unit= input("请输入:") b=z%100//10
if unit== 'q': c=z%10
break print("百:"+str(a)+",十:"+str(b)+",个:"+str(c))
else: \ No newline at end of file
total.append(unit)
print(total)
\ 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