Python教程(三)

2017-01-03  本文已影响10人  Wcy100

条件判断

说明:elif 是 else if 的缩写,在每一个 if、elif(else if)、else 语句后面都要加上冒号

scoreStr = input("Please input your score:");
score = int(scoreStr);
PASS_SCORE = 60;
WELL_SCORE = 80;
EXCELLENT_SCORE = 90;
MAX_SCORE_LIMIT=100;
MIN_SCORE_LIMIT=0;
if score<MIN_SCORE_LIMIT:
    print("Invalid score : less than min score limitation.")
elif score<PASS_SCORE:
    print("Sorry,you've failed to pass the exam.")
elif score<WELL_SCORE:
    print("Congratulations,you've passed the exam.")
elif score<EXCELLENT_SCORE:
    print("Pretty good,your score is favorable.")
elif score<MAX_SCORE_LIMIT:
    print("You've got a excellent score.")
elif score==MAX_SCORE_LIMIT:
    print("You've got the full mark.")
else:
    print("Invalid score : greater than max score limitation.")

循环

numberSeq=[1,3,5,7,8]
sum = 0
for x in numberSeq:
    sum+=x
print("sum=%d" % sum)
n = 100
sum = 0
while n>0 :
    sum+=n
    n-=1
print("sum=%d" % sum)
上一篇下一篇

猜你喜欢

热点阅读