python3.7-初学篇-12

Posted liangbannerhulk

tags:

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

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











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

python3.7-初学篇-16

python3.7-初学篇-08

python3.7-初学篇-17

python3.7-初学篇-02

python3.7-初学篇-09

python3.7-初学篇-18