PHP
·
发表于 5年以前
·
阅读量:8286
from random import randint
d = {x: randint(60,100) for x in range(1,21)}
d_after = {k:v for k,v in d.items() if v > 90}