fork download
  1. grade=90
  2. if 80<=grade<=100:
  3. print('成绩优秀')
  4. elif 60<=grade<=80:
  5. print('成绩中等')
  6. else:
  7. print('成绩差')
Success #stdin #stdout 0.02s 7108KB
stdin
Standard input is empty
stdout
成绩优秀