发布时间:2019-09-07 08:12:42编辑:auto阅读(3195)
输入一个测验成绩评定A-F
A:90-100
B:80-89
C:70-79
D:60-69
F:<60
#!/usr/bin/env python
score = int(raw_input('Please enter a score:'))
def print_score(g):
print "your score is %s " % g
if 90 < score <= 100:
print_score('A')
elif score > 80:
print_score('B')
elif score > 70:
print_score('C')
elif score > 60:
print_score('D')
else:
print_score('F')
上一篇: Python包和__init__.py文
下一篇: Python学习之PyYaml模块
51215
50632
41255
38066
32530
29435
28299
23156
23116
21455
1507°
2225°
1847°
1787°
2083°
1841°
2514°
4229°
4094°
2923°