python3.7-初学篇-14

Posted liangbannerhulk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.7-初学篇-14相关的知识,希望对你有一定的参考价值。

score = int (input (‘请输入一个分数:‘))
if 100 >= score >= 90:
  print (‘A‘)
elif 90 > score >= 80:
  print (‘B‘)
elif 80 > score >= 60:
  print (‘C‘)
elif 60 > score >= 0:
  print (‘D‘)
else:
  print (‘输入错误!‘)











以上是关于python3.7-初学篇-14的主要内容,如果未能解决你的问题,请参考以下文章

python3.7-初学篇-16

python3.7-初学篇-08

python3.7-初学篇-17

python3.7-初学篇-02

python3.7-初学篇-09

python3.7-初学篇-18