1.字典生成式练习(一)
-------->题目要求:
需求1:假设有20个学生,学生名为westosX,学生成绩在60~100之间,筛选出成绩在90分以上的学生
-------->代码如下:
import random
stuInfo = {}
for i in range(20):
name = 'westos' + str(i)
score = random.randint(60,100)
stuInfo[name] = score
print(stuInfo)
highscore = {}
for name,score in stuInfo.items():
if score > 90:
highscore[name] = score
print(highscore)
print({name: score for name,score in stuInfo.items() if score > 90})
-------->结果如下:
2.字典生成式练习(二)
-------->题目要求:
需求2:将所有key值变为大写
-------->代码如下:
#第一种方式
d = dict(a=1,b=2)
print(d)
new_d = {}
for i in d:
new_d[i.upper()] = d[i]
print(new_d)
#第二种方式
#print({k.upper():v for k,v in d.items()})