码迷,mamicode.com
首页 > 其他好文 > 详细

test6

时间:2020-07-31 21:49:47      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:打印   update   def   test   成员   upd   date   info   shu   

#判断分数优良:
def fenshu(shu):
if(shu<60):
print("不及格")
if(60<=shu and 80>shu):
print("中")
if(80<=shu and 90>shu):
print("良好")
if(shu>=90 and shu<100):
print(‘优‘)
if(shu==100):
print(‘优+‘)

fenshu(100)

#字典:
studInfo = {
‘qiusiyi‘:{‘sex‘:‘boy‘,‘number‘:38,‘score‘:90},
‘hesilin‘:{‘sex‘:‘girl‘,‘number‘:14,‘score‘:78},
‘caozhegngai‘:{‘sex‘:‘boy‘,‘number‘:24,‘score‘:88},
‘liusihan‘:{‘sex‘:‘girl‘,‘number‘:11,‘score‘:98},
‘luohongchi‘:{‘sex‘:‘boy‘,‘number‘:43,‘score‘:68},
}
#添加成员:
studInfo1 = {‘kongweijia‘:{‘sex‘:‘boy‘,‘number‘:13,‘score‘:55},}
studInfo.update(studInfo1)
#打印在90分以下的分数:
for item in studInfo:
if(studInfo[item][‘score‘]<90):
print(studInfo[item][‘number‘])

test6

标签:打印   update   def   test   成员   upd   date   info   shu   

原文地址:https://blog.51cto.com/14887662/2515458

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!