在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Python 操练 实例15标题 :应用 前提 运算符的嵌套来完成此题:进修 成就 >=90分的同窗 用A表现 ,60-89分之间的用B表现 ,60分以下的用C表现 。 法式 剖析 :法式 剖析 :(a>b)?a:b这是前提 运算符的基础 例子。 法式 源代码: #!/usr/bin/python # -*- coding: UTF-8 -*- score = int(raw_input('input score:n')) if score >= 90: grade = 'A' elif score >= 60: grade = 'B' else: grade = 'C' print '%d belongs to %s' % (score,grade) 以上实例输出成果 为: input score: 100 100 belongs to A |
请发表评论