- score=input("Enter Your Score")
- score=float(score)
- if(score>=90 and score <=100):
- print("A-tier")
- elif(score>=80 and score <=90):
- print("B-tier")
- elif(score>=70 and score <=80):
- print("c-teir")
- elif(score>=60 and score <=70):
- print("D-tier")
- elif(score>=0 and score <60):
- print("ur bad")
- else:
- print("pls type like a normal human being ")
複製代碼 |