文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python比数字游戏

2023-01-31 01:52

关注

    今天看到了一个题目,需要输入一个数字,表示成绩和他的成绩的级别:

A: 90--100

B: 80--89

C: 70--79

D: 60--69

E: < 60

 

    需求在上面大家都看到了,加入输入90-100之间,表示你的级别在A;输入80--89之间,表示你的级别是B;输入的是70--79之间,表示你的级别是C;输入60--69之间,表示你的级别是D;输入小于60,表示你没有通过;

    除了上面的判断之外,我们还需要判断输入的是字符还是数字类型,本来还需要考虑整数和负数的问题,但是由于负数有(负号)-,输入-21之后,系统判断是字符,不是数字类型了,所以这里就不考虑负数了。

     脚本很简单,下面我吧脚本贴上来,感兴趣的童鞋可以看看:

 

  1. [root@centos6 20130113]# cat aa.py 
  2. #!/usr/bin/env python 
  3. print "This script make you input your number \n" 
  4. print "Then will show your level..." 
  5. def compare(number): 
  6.         if number > 100: 
  7.                 print "Your input is too high" 
  8.         elif number >=90 and number <= 100: 
  9.                 print "Your Level is A" 
  10.         elif number >=80 and number < 90: 
  11.                 print "Your Level is B" 
  12.         elif number >=70 and number < 80: 
  13.                 print "Your Level is C" 
  14.         elif number >=60 and number < 70: 
  15.                 print "Your Level is D" 
  16.         elif number < 60: 
  17.                 print "You not pass" 
  18.  
  19.  
  20. def main(): 
  21.     while True: 
  22.         number=raw_input("Please input your number:") 
  23.         if number.isdigit(): 
  24.                 Input=int(number) 
  25.                 print "Your input is ",Input 
  26.                 compare(Input) 
  27.                 print "Press Ctrl + C to exit..." 
  28.         else: 
  29.                 print "Please input character ..." 
  30.                 print "Press Ctrl + C to exit..." 
  31.  
  32. main() 

下面来看看运行的效果吧:

 

  1. [root@centos6 20130113]# ./aa.py 
  2. This script make you input your number 
  3.  
  4. Then will show your level... 
  5. Please input your number:100 
  6. Your input is  100 
  7. Your Level is A 
  8. Press Ctrl + C to exit... 
  9. Please input your number:99 
  10. Your input is  99 
  11. Your Level is A 
  12. Press Ctrl + C to exit... 
  13. Please input your number:88 
  14. Your input is  88 
  15. Your Level is B 
  16. Press Ctrl + C to exit... 
  17. Please input your number:77 
  18. Your input is  77 
  19. Your Level is C 
  20. Press Ctrl + C to exit... 
  21. Please input your number:66 
  22. Your input is  66 
  23. Your Level is D 
  24. Press Ctrl + C to exit... 
  25. Please input your number:55 
  26. Your input is  55 
  27. You not pass 
  28. Press Ctrl + C to exit... 
  29. Please input your number:-100 
  30. Please input character ... 
  31. Press Ctrl + C to exit... 
  32. Please input your number:ijdf 
  33. Please input character ... 
  34. Press Ctrl + C to exit... 
  35. Please input your number: 

 

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯