14 综上练习题
评分规则:
A:>=90
B:>=80
C:>=70
D:其他
用户输入成绩,根据成绩显示不同的级别
score = input ("请输入您的成绩:")
new_score = int(score)
if new_score >=90 :
print ("A")
elif new_score >=80 :
print ("B")
elif new_score >=70 :
print ("C")
else :
print ("D")
相关问题:
- if缩进的相关问题
- if 运算自上而下进行
15 内容补充
if条件的嵌套
message = """欢迎致电10086
1.话费查询;
2.流量业务;
3.业务办理;
4.人工服务 """
print (message)
index = input ("请输入您选择的服务")
index = int(index)
if index == 1:
input ("话费查询")
elif index == 2:
input ("流量业务")
elif index == 3: # if可以嵌套
content = """办理业务
1.修改密码;
2.更改套餐;
3.停机;"""
print (content)
value = input ("请输入您办理的业务")
value = int (value)
if value ==1:
print ("修改密码")
elif value == 2:
print ("更改套餐")
elif value == 3:
print ("停机")
else :
print ("错误")
elif index == 4:
input ("人工服务")
else :
input ("输入错误")
标签:index,elif,score,基础,value,课程,ptyhon,print,input
From: https://www.cnblogs.com/linzaidehouhuayuan/p/17163339.html