Commit 67e264c5 by BellCodeEditor

auto save

parent be3d4830
# while True:
# a=int(input("成绩"))
# if a<60 and a>=0:
# print("不及格")
# elif a>=60 and a<85:
# print("良")
# elif a>=85 and a<=100:
# print("优")
# else:
# print("错误")
a=input("输入")
b=[]
for i in a:
if not (i in "1234567890"):
b.append(i)
print(b)
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(-90,90)
pen.pendown()
pen.begin_fill()
pen.fillcolor("red")
pen.goto(90,90)
pen.goto(-90,-90)
pen.goto(-90,90)
pen.end_fill()
pen.goto(90,90)
pen.begin_fill()
pen.fillcolor("yellow")
pen.goto(90,-90)
pen.goto(-90,-90)
pen.end_fill()
pen.hideturtle()
turtle.done()
\ No newline at end of file
File deleted
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