Python 输入分数并评
Posted 你是不夜星空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 输入分数并评相关的知识,希望对你有一定的参考价值。
类似于猜年龄,主要使用else if 函数。
score=int(input(‘input a number‘)) if 100>=score>= 90: print(‘A‘) else: if 90>score>=80: print(‘B‘) else: if 80>score>=60: print(‘C‘) else: if score<60: print(‘D‘) else: print(‘wrong‘)
以上是关于Python 输入分数并评的主要内容,如果未能解决你的问题,请参考以下文章