python3.7-初学篇-13

Posted liangbannerhulk

tags:

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

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














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

python3.7-初学篇-16

python3.7-初学篇-08

python3.7-初学篇-17

python3.7-初学篇-02

python3.7-初学篇-09

python3.7-初学篇-18