Python
import turtle as t print("attention:") print("no any symbol or letter in the blanket") t.penup() score=input("请输入此次考试分数") a=int(score) if a>100: t.color("purple") t.goto(-180,120) t.write("你肯定是个傻子",font=("楷体",40)) t.left(270) t.forward(100) t.write("除非满分不是100分",font=("楷体",40)) if a==100: print("incredble") t.color("yellow") t.left(180) t.forward(25) t.write("太强啦!",font=("楷体",50)) if a>=90and a<100: print("wonderfull") t.color("red") t.left(180) t.forward(25) t.write("真棒!",font=("楷体",40)) if a>=85and a<90: print("great") t.color("green") t.left(180) t.forward(25) t.write("还行,加油!",font=("楷体",30)) if a>=80and a<85: print("not so bad") t.color("orange") t.left(180) t.forward(25) t.write("努力一下,一定能考好的!",font=("楷体",20)) if a<=79and a<80: print("terrible") t.color("grey") t.left(180) t.forward(25) t.write("你上课干啥去了?!",font=("楷体",20))